From: rjung Date: Sun, 18 Sep 2011 09:33:21 +0000 (+0000) Subject: Document new "sessionAttributeFilter" for cluster X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=498070dda5a81b25a5c3ee15d3d7fc33ff88f454;p=tomcat7.0 Document new "sessionAttributeFilter" for cluster managers. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1172236 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/config/cluster-manager.xml b/webapps/docs/config/cluster-manager.xml index 8e92c7101..ca61ca9ee 100644 --- a/webapps/docs/config/cluster-manager.xml +++ b/webapps/docs/config/cluster-manager.xml @@ -83,6 +83,15 @@ sessions to expire on all nodes when a shutdown occurs on one node, set this value to true. Default value is false. + + A regular expression used to filter, which session attributes will + be replicated. An attribute will only be replicated, if its name + matches this pattern. If the pattern is not set (default), all + attributes are eligible for replication. As an example, the value + ^(userName|sessionHistory)$ will onlyreplicate the two + session attributes named userName and + sessionHistory. +