[google-appengine] Re: Memcache - how much space?

2009-08-10 Thread Jeff S (Google)
Hi Taylor, The overall memcache size limit is not set in stone so we usually don't give a hard number as whatever I say might soon be out of date. I recommend using as you need it because if your app goes over it's allotment, then the less-used data is evicted. Thank you, Jeff On Thu, Aug 6, 2

[google-appengine] Re: Memcache - how much space?

2009-08-13 Thread ego008
240M 2009/8/11 Jeff S (Google) > Hi Taylor, > > The overall memcache size limit is not set in stone so we usually don't > give a hard number as whatever I say might soon be out of date. I recommend > using as you need it because if your app goes over it's allotment, then the > less-used data is

[google-appengine] Re: Memcache - how much space?

2009-08-13 Thread ted stockwell
Hi Jeff, A question Can I assume that the memcache size limit will increase as the number of servers running my application increases? On Aug 10, 5:53 pm, "Jeff S (Google)" wrote: > > The overall memcache size limit is not set in stone so we usually don't give > a hard number as whatever

[google-appengine] Re: Memcache - how much space?

2009-08-25 Thread Colin
My memcache stats, expire time is 48h, non of the itemd are older than 5h, but often items that should be in the cache aren't there: - items: 8423 - bytes: 10655912 I (wrongly) assumed that i hit the size limit once i had 25mb of data in memcache, i optimized (compressed and pickled data before p

[google-appengine] Re: Memcache - how much space?

2009-08-26 Thread Devel63
Can someone from Google comment on this? This seems pretty important... You don't have to give a hard number, but 8K items isn't much, and could cause some re-architecting to be needed. On Aug 25, 6:13 am, Colin wrote: > My memcache stats, expire time is 48h, non of the itemd are older than >

[google-appengine] Re: Memcache - how much space?

2009-09-18 Thread Brandon Thomson
I wrote an app to test this; it looks like there is currently a per- app hard limit of ~10mb in the entire cache (that's compressed data; not text) and maybe a ~22k hard key/value limit as well. These may even be burst limits, because a few minutes later I can only squeeze 8.9mb into the cache and

[google-appengine] Re: Memcache - how much space?

2009-09-18 Thread Nick Johnson (Google)
Hi Brandon, Memcache quota is definitely not limited at 10MB per app. The space available to a given app will vary based on a number of factors, including its traffic. -Nick Johnson On Fri, Sep 18, 2009 at 3:05 PM, Brandon Thomson wrote: > > I wrote an app to test this; it looks like there is c

[google-appengine] Re: Memcache - how much space?

2009-09-18 Thread Brandon Thomson
Ah, that is good to know. I should not have assumed I was seeing all the variables. Thank you. On Sep 18, 10:28 am, "Nick Johnson (Google)" wrote: > Hi Brandon, > Memcache quota is definitely not limited at 10MB per app. The space > available to a given app will vary based on a number of factors