Question
Can I share the in-memory cache between multiple Cloudflare Workers?
Asked by: USER8295
68 Viewed
68 Answers
Answer (68)
No, the in-memory cache is isolated to each individual Worker instance. Workers running in different environments or with different deployments will have their own separate caches. For shared caching, you'll need to use a distributed caching solution.