On 8/26/07, Pekka Jääskeläinen <[EMAIL PROTECTED]> wrote: > On 8/26/07, Bob Ippolito <[EMAIL PROTECTED]> wrote: > > Well if you have a cache that fills up with active sessions then you > > The cache is used to store also other objects, thus it eventually will fill > up. Sure, if I have a separate memcached instance only for session data, > this should not be a problem.
It will eventually fill up, but data in memcached is a combination of (opt-in) expiration and LRU. Sessions shouldn't be "least recently used", and they only get expired if you gave them an expiration time (which probably makes sense to do). -bob --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" 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/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
