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

Configuring NSJSP
NonStop Servlets for JavaServer Pages (NSJSP) System Administrator’s Guide525644-002
3-54
Configuring the Manager for Sessions Support
debug
The debug level for messages logged to the associated logger. Higher numbers
generate more detailed output. The default is 0 (zero).
entropy
A string value used when seeding the random-number generator that creates
session identifiers. If this attribute is not specified, a semi-useful preset value is
used. For a security-conscious environment, use a long string value.
maxActiveSessions
The maximum number of active sessions that can be created. The default is -1 for
no limit or unlimited active sessions.
If this value is 0 (zero) or greater and too many active sessions exist, some active
sessions will be swapped out. The minIdleSwap attribute limits the sessions
being swapped out. Setting the minIdleSwap value to 0 (zero) means that
sessions are always swapped out after use, but slows performance. However, if
minIdleSwap is too low, sessions may not be created.
If you change the value of maxActiveSessions, ensure that value and the
minIdleSwap value are configured according to the amount of session-based
traffic this server is expected to receive. The recommended setting is -1.
maxIdleBackup
The interval (in seconds) a session must be idle (time since last access to the
session) before it can be persisted to the session store. The default value of -1
disables this feature. Note however that the maxActiveSessions,
minIdleSwap, and maxIdleSwap parameters could override this parameter
value and swap out a session before it reaches its maximum idle time interval. If
this feature is enabled, the interval specified here should be less than the value
specified for maxIdleSwap.
minIdleSwap
The interval (in seconds) for which a session must be idle (time since last access
to the session) before it is eligible to be persisted to the session store and
passivated out of the NSJSP container's memory. If this feature is enabled, the
interval specified here should be less than the value specified for maxIdleSwap.
The default of -1 disables this feature.
maxIdleSwap
The interval (in seconds) for which a session must be idle (time since last access
to the session) before it is persisted to the session store and passivated out of the
NSJSP container's memory. If this feature is enabled, the interval specified here
should be equal to or longer than the value specified for maxIdleBackup. The
default of -1 disables this feature.