You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2013/12/27 10:30:29 UTC

svn commit: r1553650 - in /tomcat/trunk/webapps/docs/config: ajp.xml http.xml

Author: markt
Date: Fri Dec 27 09:30:29 2013
New Revision: 1553650

URL: http://svn.apache.org/r1553650
Log:
Be more precise about how maxConnections works

Modified:
    tomcat/trunk/webapps/docs/config/ajp.xml
    tomcat/trunk/webapps/docs/config/http.xml

Modified: tomcat/trunk/webapps/docs/config/ajp.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/ajp.xml?rev=1553650&r1=1553649&r2=1553650&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/config/ajp.xml (original)
+++ tomcat/trunk/webapps/docs/config/ajp.xml Fri Dec 27 09:30:29 2013
@@ -357,10 +357,13 @@
     <attribute name="maxConnections" required="false">
       <p>The maximum number of connections that the server will accept and
       process at any given time. When this number has been reached, the server
-      will not accept any more connections until the number of connections
-      falls below this value. The operating system may still accept
-      connections based on the <code>acceptCount</code> setting. Default value
-      varies by connector type. For BIO the default is the value of
+      will accept, but not process, one further connection. This additional
+      connection be blocked until the number of connections being processed
+      falls below <strong>maxConnections</strong> at which point the server will
+      start accepting and processing new connections again. Note that once the
+      limit has been reached, the operating system may still accept connections
+      based on the <code>acceptCount</code> setting. The default value varies by
+      connector type. For BIO the default is the value of
       <strong>maxThreads</strong> unless an <a href="executor.html">Executor</a>
       is used in which case the default will be the value of maxThreads from the
       executor. For NIO the default is <code>10000</code>.

Modified: tomcat/trunk/webapps/docs/config/http.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/http.xml?rev=1553650&r1=1553649&r2=1553650&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/config/http.xml (original)
+++ tomcat/trunk/webapps/docs/config/http.xml Fri Dec 27 09:30:29 2013
@@ -396,10 +396,13 @@
     <attribute name="maxConnections" required="false">
       <p>The maximum number of connections that the server will accept and
       process at any given time. When this number has been reached, the server
-      will not accept any more connections until the number of connections
-      falls below this value. The operating system may still accept
-      connections based on the <code>acceptCount</code> setting. Default value
-      varies by connector type. For BIO the default is the value of
+      will accept, but not process, one further connection. This additional
+      connection be blocked until the number of connections being processed
+      falls below <strong>maxConnections</strong> at which point the server will
+      start accepting and processing new connections again. Note that once the
+      limit has been reached, the operating system may still accept connections
+      based on the <code>acceptCount</code> setting. The default value varies by
+      connector type. For BIO the default is the value of
       <strong>maxThreads</strong> unless an <a href="executor.html">Executor</a>
       is used in which case the default will be the value of maxThreads from the
       executor. For NIO the default is <code>10000</code>.



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org