From: fhanik Date: Fri, 13 Oct 2006 00:26:52 +0000 (+0000) Subject: more documentation for the manager element X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=cc8d92c39288f28bb2ae0d5619d10ddf01a31dbb;p=tomcat7.0 more documentation for the manager element git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@463526 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/config/cluster-manager.xml b/webapps/docs/config/cluster-manager.xml index 76985b5c1..c2acb34aa 100644 --- a/webapps/docs/config/cluster-manager.xml +++ b/webapps/docs/config/cluster-manager.xml @@ -15,6 +15,7 @@
+

A cluster manager is an extension to Tomcat's session manager interface, org.apache.catalina.Manager A cluster manager must implement the org.apache.catalina.ha.ClusterManager and is solely @@ -27,35 +28,53 @@ so the manager knows at what locations the webapp is deployed.
We are planning to add more managers with even more sophisticated backup mechanism to support even larger clusters. Check back soon! - +

+
+

+ The <Manager> element defined inside the <Cluster> element + is the template defined for all web applications that are marked <distributable/> + in their web.xml file. + However, you can still override the manager implementation on a per web application basis, + by putting the <Manager> inside the <Context> element either in the + context.xml file or the server.xml file. +

+
- - - - - - - + + + + Set to true if you wish sessions to be replicated only to members that have the same logical domain set. If set to false, session replication will ignore the domain setting the <Membership> element. - - + + + The name of this cluster manager, the name is used to identify a session manager on a node. + The name might get modified by the Cluster element to make it unique in the container. + + Deprecated since 6.0.0 - - - - - - - - + + + Set to true if you wish to have session listeners notified when + session attributes are being replicated or removed across Tomcat nodes in the cluster. + + + + + + + When a webapplication is being shutdown, Tomcat issues an expire call to each session to + notify all the listeners. If you wish for all sessions to expire on all nodes when + a shutdown occurs on one node, set this value to true. + Default value is false. +