Tomcat (as a servlet container) is able to manage sessions. When the session expires, tomcat have to invalidate it. As far as I'm concerned tomcat has a scheduler, which checks sessions expiration (am I right? I've tried to write a listener which implemented the HttpSessionListener (expiration period == 1 minute), and it's sessionDestroyed method was notified after a minute but I'm not sure what session was invalidated).
The question is, what is the scheduler's check period?