From be4531b94d00b457019288ce753cce3a5b241f9d Mon Sep 17 00:00:00 2001 From: Ranjith Manickam Date: Fri, 17 Mar 2017 22:58:07 +0530 Subject: [PATCH] Updated Home (markdown) --- Home.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Home.md b/Home.md index 852e503..708dc49 100644 --- a/Home.md +++ b/Home.md @@ -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.