Re: [appengine-java] Problems with MemCache, I call get(..) and the object comes with null properties

2011-02-08 Thread dudu
Te properties are not transient: I think there is some inheritance problem =\ https://gist.github.com/816246 https://gist.github.com/816248 https://gist.github.com/816250 https://gist.github.com/816252 And to save I call updateQuote() from here: https://gist.github.com/816261 -- You receiv

Re: [appengine-java] Problems with MemCache, I call get(..) and the object comes with null properties

2011-02-07 Thread Ikai Lan (Google)
Can you post the object definition? Could the properties be transient? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Mon, Feb 7, 2011 at 11:44 AM, dudu

[appengine-java] Problems with MemCache, I call get(..) and the object comes with null properties

2011-02-07 Thread dudu
Here is how I declare my cache: Cache cache; Map props = new HashMap(); props.put(GCacheFactory.EXPIRATION_DELTA, 60);// seconds CacheFactory cacheFactory = CacheManager.getInstance() .getCacheFactory(); cache = cacheFactory.createCache(props); I have an seria