Switching to a multi-row schema
The multi-row schema configuration supports storing an unlimited amount of data that is only bounded by the database capacities in an application. The application can read individual fields instead of the whole record, which can help to improve performance by avoiding unnecessary Java™ object serialization. Configure the session management facility to store each attribute in a session object in its own row in the database by using the multi-row schema configuration.
About this task
The only practical limit that remains is the size of the session attribute object. The multi-row schema potentially has performance benefits in certain usage scenarios, such as when larger amounts of data are stored in the session but only small amounts are specifically accessed during a given servlet processing of an HTTP request. In such a scenario, avoiding unneeded Java object serialization is beneficial to performance.
In addition to allowing larger session records, using multi-row schema can yield performance benefits. However, it requires a little work to switch from single-row to multi-row schema, as shown in the following table.
By default, a single session maps to a single row in the database table used to hold sessions. With this setup, there are hard limits to the amount of user-defined, application-specific data that WebSphere® Application Server can access.
Consider configuring direct single-row usage to one database and multi-row usage to another database while you verify which option suits your application needs. Do this in code by switching the data source used; then monitor performance.
Programming issue | Application scenario |
---|---|
Reasons to use single-row |
|
Reasons not to use single-row | 2-megabyte limit of stored data per session. |
Reasons to use multi-row |
|
Reasons not to use multi-row | If data is small in size, you probably do not want the extra overhead of multiple row reads when you can store everything in one row. |
In the case of multi-row usage, design your application data objects not to have references to each other, to prevent circular references. For example, suppose you are storing two objects A and B in the session using HttpSession.put(..) method, and A contains a reference to B. In the multi-row case, because objects are stored in different rows of the database, when objects A and B are retrieved later, the object graph between A and B is different than stored. A and B behave as independent objects.