NonStop Servlets for JavaServer Pages (5.0) System Administrator's Guide

NSJSP Container Objects
NonStop Servlets for JavaServer Pages (NSJSP) System Administrator’s Guide525644-002
C-15
Manager Object
sessionCounter (int)
Specifies the total number of sessions ever created by this manager.
maxActive (int)
Specifies the high water mark of the active session.
rejectedSessions (int)
Specifies the total number of sessions rejected because the maxActiveSessions
has been reached.
expiredSessions (int)
Specifies the total number of sessions that have expired. This number does not
include those sessions that have been explicitly invalidated.
processingTime (int)
Specifies the time spent for performing housekeeping and session expirations.
duplicates (int)
Specifies the number of duplicated session ids generated.
The NSJSPPersistentManager supports the following additional properties:
className (String)
The value is
com.tandem.servlet.catalina.session.NSJSPPersistentManager.
maxIdleBackup (int)
The interval (in seconds) a session must be idle (time since last access to the
session) before the session can be persisted to the session store. A value of -1
disables this feature. The default is -1.
minIdleSwap (int)
The interval (in seconds) for which a session must be idle (time since last access
to the session) before the session is eligible to be persisted to the session store
and passivated out of the NSJSP Container's memory. A value of -1 disables this
feature. If this feature is enabled, the interval specified should be less than the
value specified for maxIdleSwap. The default is -1.
Note. The maxActiveSessions, minIdleSwap, and maxIdleSwap properties could override this
property value and swap out a session before it reaches its maximum idle time interval. If this
feature is enabled, the time interval specified should be less than the value specified for
maxIdleSwap.