From 25b5b3e13dcd57639bf158fa5d44b44c2b42f143 Mon Sep 17 00:00:00 2001 From: Nikita Koksharov Date: Fri, 29 Mar 2019 08:33:50 +0300 Subject: [PATCH] Update README.md --- redisson-tomcat/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/redisson-tomcat/README.md b/redisson-tomcat/README.md index d4e23f917..62fb51ef0 100644 --- a/redisson-tomcat/README.md +++ b/redisson-tomcat/README.md @@ -23,12 +23,14 @@ Add `RedissonSessionManager` into `tomcat/conf/context.xml` ``` - `readMode` - read attributes mode. Two modes are available: + `readMode` - read Session attributes mode. Two modes are available: * `MEMORY` - stores attributes into local Tomcat Session and Redis. Further Session updates propagated to local Tomcat Session using Redis-based events. * `REDIS` - stores attributes into Redis only. Default mode.
- - `updateMode` - attributes update mode. Two modes are available: + + `broadcastSessionEvents` - if `true` then `sessionCreated` and `sessionDestroyed` events broadcasted across all Tomcat instances and trigger all registered HttpSessionListeners. Default is `false`. + + `updateMode` - Session attributes update mode. Two modes are available: * `DEFAULT` - session attributes are stored into Redis only through setAttribute method. Default mode. * `AFTER_REQUEST` - all session attributes are stored into Redis after each request.