Skip to content

ern/tomcat8-redis-sessions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redis Sessions for Tomcat 8

The existing libraries for Redis sessions don't work well in Tomcat 8, and have some interesting design decisions.

Dependencies

This library leverages Jedis to work with Redis. Those Redis connections are pooled using Apache Commons Pool2. The library is compiled for Java 8.

Session Storage Approach

Each fresh session is given a random UUID as an identifier. There are two keys in Redis associated with the session:

  • UUID:attributes — The attributes, stored as a hash of attribute name keys onto Base64-encoded serialized Java object values.
  • UUID:metadata — A hash of the various bits of metadata associated with this UUID.

Metadata

Expiration

If max_inactive_interval is greater than zero, then the UUID:attributes entry has an explicit expiration of max_inactive_interval seconds after last_access_time, which is set explicitly and updated whenever a request is made. If the session is requested by the user but it is discovered to be after the expiration, the system will invalidate the session. A session which is invalidated, either explicitly or automatically, will have its UUID:attributes key deleted and have its valid value set to false.

The UUID:metadata entry has no expiration, and will be removed by Redis at its discretion: they are left around for auditing support.

Session Retrieval Approach

Session attributes and metadata are retrieved the first time they are needed in a request. Metadata is updated when the request is retrieved, or when the metadata is explicitly manipulated through the Session or HTTPSession API. Any retrieved or assigned session attribute is persisted back to Redis when the request completes: we have to persist any retrieved session attribute because Java allows mutable data to be stored in the session attribute, and it is difficult to recognize when the mutable data has changed.

About

Library for using Redis sessions in Tomcat 8.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%