+

Search Tips   |   Advanced Search

 

Multirow schema considerations

 

WAS supports the use of a multirow schema option in which each piece of application specific data is stored in a separate row of the database. With this setup, the total amount of data you can place in a session is now bound only by the database capacities. The only practical limit that remains is the size of the session attribute object.

The multirow 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.

Understand that switching between multirow and single row is not a trivial proposition.

In addition to allowing larger session records, using multirow schema can yield performance benefits. However, it requires a little work to switch from single-row to multirow schema, as shown in the following table.

 

Coding considerations and test environment

Consider configuring direct single-row usage to one database and multirow 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

  • You can read or write all values with just one record read and write.

  • This takes up less space in a database because you are guaranteed that each session is only one record long.

Reasons not to use single-row 2-megabyte limit of stored data per session.
Reasons to use multirow

  • The application can store an unlimited amount of data; that is, you are limited only by the size of the database and a 2-megabyte-per-record limit.

  • The application can read individual fields instead of the whole record. When large amounts of data are stored in the session but only small amounts are specifically accessed during servlet processing of an HTTP request, multirow sessions can improve performance by avoiding unneeded Java object serialization.

Reasons not to use multirow 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 multirow 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 multirow 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.


 

Related tasks


Switching to a multirow schema

 

Reference topic