___cliff rayman___ wrote:
> I believe that deleting them via the cron is the standard method.
This makes sense, though I had hoped for something more perlish.
> I actual use a more complex technique that looks into the session to
> decide if it is a session worth saving, such as it contains an a
Garrison Hoffman wrote:
I'm storing session IDs in cookies for 60 days, so I'd like to limit
sessions similarly. I could certainly run a cron for this, but is there
a better way?
I believe that deleting them via the cron is the standard method. Test
out the following (by changing rm to l
I'm using mod_perl2 + Apache::Session::MySQL and I'm wondering what to
do with stale sessions. Does Apache::Session do any cleanup or do I
need to explicitly tied(%session)->delete; ?
I'm storing session IDs in cookies for 60 days, so I'd like to limit
sessions similarly. I could certainly run a