I have categories with (infinite possible levels but will definitely be kept under a 1000) and I'm wondering what is the limit to the memcache in the following instance (generally when caching on a single key):
all_categories = Categories.all().fetch(1000)
memcache.set('categories', serialize_entities(all_categories))
Thanks for any suggestions.