Google App Engine has some information about Memcache limits:

However, total allowed size of RAM/memory store for a single application is not specified. It's known that no objects above 1MB is allowed. Do you have information?

link|improve this question

feedback

1 Answer

up vote 16 down vote accepted

The amount of memcache capacity your app has isn't fixed, and may vary depending on the traffic to your app and how it uses memcache.

link|improve this answer
6  
Nick, are there any plans to publish some sort of general guidelines or rules of thumb for understanding or predicting memcache behavior? It feels difficult to intelligently use memcache to get optimal performance when I would like to put absolutely everything in there, but I don't want to accidentally evict some things that I really, really need for the sake of something that might be less important. Is there some generally-applicable algorithm for making that decision? – Adam Crossland Feb 1 '10 at 20:40
4  
In broad terms: Trust the eviction policy. Put everything in there that could be useful, and the stuff that gets accessed the most will stay there longest. – Nick Johnson Feb 2 '10 at 12:06
+1 Thanks Nick! – Viet Feb 2 '10 at 13:48
@NickJohnson - that's all very well, but what if I know item A costs me USD1 per thousand to recreate and item B costs USD0.10? – mjaggard Mar 9 at 14:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.