Updated Home (markdown)

master
Ranjith Manickam 2017-03-17 22:58:07 +05:30
parent 02d63e0cca
commit be4531b94d
1 changed files with 2 additions and 2 deletions

@ -1,6 +1,6 @@
#### **Welcome to the TomcatClusterRedisSessionManager wiki!**
#### **Welcome to the Tomcat Clustering Redis Session Manager wiki!**
Redis session manager is pluggable one. It uses to store sessions into Redis for easy distribution of HTTP Requests across a cluster of Tomcat servers. Sessions are implemented as as non-sticky i.e, each request is forwarded to any server in round-robin manner.
Redis session manager is plug-gable one. It uses to store sessions into Redis for easy distribution of HTTP Requests across a cluster of Tomcat servers. Sessions are implemented as as non-sticky i.e, each request is forwarded to any server in round-robin manner.
The HTTP Requests session setAttribute(name, value) method stores the session into Redis (must be Serializable) immediately and the session getAttribute(name) method request directly from Redis. Also, the inactive sessions has been removed based on the session time-out configuration.