(cross posted from http://stackoverflow.com/questions/4743534/appengine-memcache-always-returns-null)
I can't seem to figure out why, but I get a cache miss on memcache on every single attempt. I'm using a framework that abstracts away the actual call to the memcache service; however, even when I use it directly it doesn't work. On my Quota details, I see that memcache has registered API calls and data sent but no data received from API. I've done some more testing and found that the put calls were failing silently (not even the log message you normally get) because of unserializable types in the class. I fixed this and it continued to fail. However, after changing the implementation from MemcacheService to JCache, it started working again. Any ideas? I'd rather not use JCache. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
