I realize the shared memcache in Google App Engine, can only hold the key-value for a very short period. I have perform the following call for 20 times, at different timestamp.
_MEMCACHE_DURATION = 14*24*60*60
memcache.add(email, user_timestamp, _MEMCACHE_DURATION)
My expectation is, the key-value will last for 14 days. However, I find out the oldest item age is "1 hr 42 min"
When I look at documentation, I thought that valid time is up to 1 month : https://cloud.google.com/appengine/docs/python/memcache/functions#Client_add
I was wondering, is such behavior correct?