How much memory of Memcache is available to a Google App Engine account?

google-app-engine, limit, memcached, quota

Solution

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.

Problem

Google App Engine has some information about Memcache limits: - http://code.google.com/appengine/docs/quotas.html#Memcache - http://code.google.com/appengine/docs/python/memcache/overview.html#Quotas_and_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?

Original source