Http Session Tuning - Cache size



The session data is stored in cache and The Maximum in session memory count number has different meanings, depending on session support configuration:

  • With in-memory sessions, session access is optimized for up to this number of sessions.

  • With distributed sessions (meaning, when sessions are stored in a database or in another WebSphere Application Server instance); it also specifies the cache size and the number of last access time updates saved in manual update mode.


For distributed sessions, when the session cache has reached its maximum size and a new session is requested, the Session Management facility removes the least recently used session from the cache to make room for the new one. General memory requirements for the hardware system, and the usage characteristics of the e-business site, determines the optimum value. Note that increasing the base in-memory session pool size can necessitate increasing the heap sizes of the Java processes for the corresponding WebSphere Application Servers.

By default, the number of sessions maintained in memory is specified by base in-memory session pool size. If you do not wish to place a limit on the number of sessions maintained in memory and allow overflow, set overflow to true. Allowing an unlimited amount of sessions can potentially exhaust system memory and even allow for system sabotage. Someone could write a malicious program that continually hits your site and creates sessions, but ignores any cookies or encoded URLs and never utilizes the same session from one HTTP request to the next. When overflow is disallowed, the Session Management facility still returns a session with the HttpServletRequest getSession(true) method when the memory limit is reached, and this is an invalid session that is not saved

1 comment:

JavaSam said...

IF the maximum number reached for the session then it will be reused means what we can do solve it? since overflow may slow up our server if the load is more.

Is that maximum user can make the session to become null?

Is that maximum user can make the session id to be used by multiple user??