On Dec 4, 8:52 am, Damian <[email protected]> wrote: > Ah - found the following on removing expired sessions and it basically > suggests doing what I wanted: > > http://beaker.groovie.org/sessions.html
No it doesn't. It states "When using the file-based sessions" then suggests another approach for DB backed sessions. BDB sessions are not filed based, they're based on BDB. BDB just saves the info to files in a directory you specify, vs (example) postgres saving to /usr/local/postgres/data/* As Alec stated, BDB doesn't like it if you remove files. In my experience, you're likely to corrupt everything with a bad file in BDB. I would just run a cronjob that clears out old bdb files. -- 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.
