I would like to know if each GAE instance has its own memcache and if data which is cached from one instance is reachable from another instance? Or if it needs a new query again?
Asked
Active
Viewed 159 times
1
-
1possible duplicate of [GAE: memcache: is it the same across multiple app instances](http://stackoverflow.com/questions/8055381/gae-memcache-is-it-the-same-across-multiple-app-instances) – Shay Erlichmen Sep 09 '12 at 20:52
1 Answers
5
No, memcache is not per instance, it is global to your app. So yes, every instance can access the memcache independently from the instance.

Scott Bartell
- 2,801
- 3
- 24
- 36

aschmid00
- 7,038
- 2
- 47
- 66
-
Ok but pricing for memcache not mentioned on documentation. What is the limit for it, if it's not consuming instance's ram. (I mean total limit not for a key) – ecabuk Sep 09 '12 at 17:18
-
3Memcache is free to use. There are limits to daily usage of memcache, but they are not officially published: http://stackoverflow.com/questions/2175586/how-much-memory-of-memcache-is-available-to-a-google-app-engine-account – Peter Knego Sep 09 '12 at 18:50