Re: [appengine-java] Application Resource File Limit

2009-12-27 Thread Nicanor Cristian
You cannot deploy war files bigger than 15000 bytes. You might consider storing the mp3 files in the datastore. sulaimanmra...@googlemail.com ha scritto: > Hi, > > I'm working on a web application where users can listen to mp3's > through a open source web player. The war file is around 400mb

Re: [appengine-java] memcache and session on GAE

2010-01-08 Thread Nicanor Cristian
On 01/08/2010 10:58 AM, Prashant Gupta wrote: 2010/1/8 nicanor.babula > Hi everyone. How memcache works on GAE? Let me explain: Do I get one memcache instance per app instance or there is one memcache instance for all instastances of my app?

Re: [appengine-java] memcache and session on GAE

2010-01-08 Thread Nicanor Cristian
static void put(String key, Object value, long expirationDeltaMillis) { Property property = new Property(key, value, expirationDeltaMillis); /pmf/.makePersistent(property); /cache/.put(property.Key, property); } } 2010/1/8 Prashant Gupta <mailto:nextprash...@gmail.com>> 2