Yes, Memcache uses LRU to expire elements: http://en.wikipedia.org/wiki/Memcached
Romain, this stands for "Least Recently Used" and refers to Memcache automatically throwing items out of the cache if they have not been written/read and the space is needed. What this essentially means is that you won't ever have an "out-of-memory" error. On Fri, Apr 30, 2010 at 12:02 PM, Romain Pelisse <[email protected]> wrote: > Computer science is full of acromym, that are sometimes badly translated. > If were you i'elle explain what you are thinking of by LRU. > > Le 30 avr. 2010 20:02, "keyurva" <[email protected]> a écrit : > > > Can someone confirm or refute if the MemcacheService is LRU or not? > I'm looking to implement a sliding expiration within the memcache > service but if it is already an LRU then I don't need to bother. > > Thanks, > Keyur > > -- > 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]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > > -- > 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]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > -- Ikai Lan Developer Relations, Google App Engine Twitter: http://twitter.com/ikai Delicious: http://delicious.com/ikailan ---------------- Google App Engine links: Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine -- 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.
