Reputation: 11
Using Google App Engine Memcache... Can more than one user access the same key-value pair? or in other words.. Is there a Memcache created per user or is it shared across multiple users?
Upvotes: 1
Views: 100
Reputation: 21
It's not shared between multiple applications if that's what you asked. Each of your instances on a single application will see a consistent view of the cache.
From documentation: The cache is global and is shared across the application's frontend, backend, and all of its services and versions.
Upvotes: 2
Reputation: 11370
Memcache is shared across users. It is not a cookie, but exists in RAM on the server for all pertinent requests to access.
Upvotes: 0