On Nov 17, 12:13 am, Greg <[EMAIL PROTECTED]> wrote: > > I don't know if this means that each server instance has its own > > Memcache or that all the instances access a single Memcache. > > All instances access the "same" memcache - although this may be > distributed behind the scenes, I don't know about that.
For any particular "key", all instances will talk to the same memcache backend. Note that we can easily have different keys hosted on different backends, though, thanks to the simplicity of the memcache API (i.e. lack of transactions). This is how we can shard one app's memcache data on to multiple machines. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
