From: Jeff Trawick Date: Wed, 22 Sep 2010 18:37:16 +0000 (+0000) Subject: follow up r956069 with additional clarifications X-Git-Tag: 2.3.9~455 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d80663d4f49c0bcd025db5782344056e76f9032b;p=apache follow up r956069 with additional clarifications about the connection pool and related parameters (yes, and fix part of those earlier "clarifications") git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1000130 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_proxy.xml b/docs/manual/mod/mod_proxy.xml index 811d499de6..1affd6c329 100644 --- a/docs/manual/mod/mod_proxy.xml +++ b/docs/manual/mod/mod_proxy.xml @@ -764,13 +764,12 @@ expressions using key=value parameters, described in the table below.

-

Setting min will determine how many connections to - the backend server will be retained after use. Up to the - Soft Maximum, or smax, number of connections will be - created on demand. Any connections above smax are - subject to a time to live, or ttl. Apache httpd will - never create more than the Hard Maximum or, max, - connections to the backend server.

+

Setting min to non-zero allows connections to the + backend server to be retained after use; at least min + connections will be retained. Any idle connections above + smax are subject to a time to live, or ttl. + Up to the hard maximum, or max, number of connections + may be created.

The pool of connections is maintained per web server child process, and the min, max, and @@ -801,9 +800,8 @@ expressions to the backend server. smax max - Up to the Soft Maximum - number of connections will be created on demand. Any connections above - smax are subject to a time to live or ttl. + Retained connections above the soft maximum, or smax, + are subject to a time to live, controlled by the ttl parameter. acquire - @@ -931,9 +929,9 @@ expressions ttl - - Time To Live for the inactive connections above the - smax connections in seconds. Apache httpd will close all - connections that has not been used inside that time period. + Time to live for the inactive connections above smax, + in seconds. Connections above smax will be closed + if they have not been used inside that time period.