On Thu, Sep 27, 2012 at 7:21 AM, Vinny P <
vinn...@gmail.com> wrote:
> There are no guarantees with Memcache. Memcache can evict values whenever it
> wants to (mostly due to space pressures, but other reasons can cause
> Memcache to drop values as well). If you want Memcache to retain a value,
> you need to repeatedly access it; this hints to Memcache that this value is
> important and needs to be retained.
...and even if you do this, it will still be reset periodically.
Memcache is for cache, not for storage.
> If you want long-term storage, you need to store to the datastore, Cloud
> SQL, Cloud Storage, etc.
This is the right solution.
Jeff