Updated Home (markdown)

master
Ranjith Manickam 2016-11-26 01:46:00 +05:30
parent 358e4b3427
commit 89e8cf6e6e
1 changed files with 14 additions and 0 deletions

14
Home.md

@ -1 +1,15 @@
Welcome to the TomcatClusterRedisSessionManager 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.
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.
It supports, both single redis master and redis cluster based on the RedisDataCache.properties configuration.
Going forward, we no need to enable sticky session (JSESSIONID) in Load balancer.
### Versions:
* [**1.1.1**](https://github.com/ran-jit/TomcatClusterRedisSessionManager/releases/tag/1.1.1)
* [**1.1**](https://github.com/ran-jit/TomcatClusterRedisSessionManager/releases/tag/1.1)
* [**1.0**](https://github.com/ran-jit/TomcatClusterRedisSessionManager/releases/tag/1.0)