In Tomcat's documentation, the definition of system property org.apache.catalina.session.
StandardSession.ACTIVITY_CHECK
states the following:
If this is true, Tomcat will track the number of active requests for each session. When determining if a session is valid, any session with at least one active request will always be considered valid.
I find no definition of an "active request" in the docs. Does that mean "not idle" in the sense that the request is not older than minIdleSwap
?
Also, in the quote above "valid session" seems to mean "active session". Are these two terms synonymous for Tomcat? I would think that "valid" means that the session has neither expired nor been explicitly invalidated. That is not related to activity.
May I please get some guidance on the terminology (active request, active session, valid session)?