> Before the session is loaded, it's first cleaned up, and then if the > session for the user isn't expired, it's loaded, otherwise, a new one > should be created (don't remember if creation is automatic, but should > be). Yes the creation is automatic ... https://github.com/webpy/webpy/blob/master/web/session.py#L81
So there is no automatic cleaning if the session is never requested to be loaded again which is the answer to my original question (if I set the timeout to some value and the browser which created that cookie never visits me again still that cookie will be deleted after the said amount of time automatically or do I have to specifically write code for it ?) So I guess I have to schedule a job to clean all sessions per day ... -- You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en.
