Reputation: 487
My problem is my memcache resets every night. What could the be problem?
I have a very simple low-traffic web site on Google App Engine in Java. I do not have any instances left at night because of lack of traffic. If there is no instance, does it mean that memcache clears all its data?
Upvotes: 0
Views: 65
Reputation: 2618
Memcache is not persistent and can be evicted by memory pressure. Share memcache is shared with other apps. You can buy dedicated memcache for reserved amount. What you described does not seem to be a problem at all. One important question is, what is the timeout that you set?
Upvotes: 2