InfoCenter Home >
4: Developing applications >
4.4: Personalizing applications >
4.4.1: Tracking sessions >
4.4.1.1: Session programming model and environment >
4.4.1.1.7: Tuning session support >
4.4.1.1.7.6: Tuning session support: Write contents

4.4.1.1.7.6: Tuning session support: Write contents

In Session Manager, you can configure which session data is written to the database. This flexibility allows for fewer code changes for the JSP writer when the application will be operating in a clustered environment. The following options are available in Session Manager for tuning what is to be written back to the database:

  • Write changed (the default) - Write only session data properties that have been updated through setAttribute() and removeAttribute() method calls.
  • Write all - Write all session data properties.

The Write all setting might benefit servlet and JSP writers who change Java objects that reside as attributes in an HttpSession instance. Previously, every programmatic change in an attribute would require a setAttribute() call to make sure changes were reflected in the database in a timely manner. In most cases, the use of this setting eliminates the need for all but the initial setAttribute() call to bind the object to the session.

However, the use of Write all could result in more being written back to the database than is necessary. If this situation applies to you, consider combining the use of Write all with Time-based write to boost performance overall. As always, be sure to evaluate the advantages and disadvantages for your installation.

With either Write Contents setting, when a session is first created, complete session information is written to the database, including all of the objects bound to the session. In subsequent session requests, what is written to the database depends on whether a single-row or multirow schema has been set for the session database, as follows:

Write Contents setting Behavior with single-row schema Behavior with multirow schema
Write changed If any session attribute is updated, all objects bound to the session are written. Only the session data modified through setAttribute() or removeAttribute() calls is written.
Write all All bound session attributes are written. All session attributes that currently reside in the cache are written. If the session has never left the cache, all session attributes are written.
Go to previous article: Tuning session support: Base in-memory session pool size Go to next article: Tuning session support: Scheduled invalidation

 

 
Go to previous article: Tuning session support: Base in-memory session pool size Go to next article: Tuning session support: Scheduled invalidation