summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/worker.html.en
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-06-22 23:34:41 +0200
committerStefan Fritsch <sf@apache.org>2011-06-22 23:34:41 +0200
commitd7f847eabf14bfaba9df373af8e28abfb60de9f5 (patch)
tree64eca5364f3d1a1429dc8a6bf3071fb1e26e4cfc /docs/manual/mod/worker.html.en
parentUpdate transforms (diff)
downloadapache2-d7f847eabf14bfaba9df373af8e28abfb60de9f5.tar.xz
apache2-d7f847eabf14bfaba9df373af8e28abfb60de9f5.zip
update transforms, 2nd try :-/
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1138643 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/worker.html.en')
-rw-r--r--docs/manual/mod/worker.html.en16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/manual/mod/worker.html.en b/docs/manual/mod/worker.html.en
index d31b7319af..c2261fed10 100644
--- a/docs/manual/mod/worker.html.en
+++ b/docs/manual/mod/worker.html.en
@@ -43,7 +43,7 @@
<p>The most important directives used to control this MPM are
<code class="directive"><a href="../mod/mpm_common.html#threadsperchild">ThreadsPerChild</a></code>, which
controls the number of threads deployed by each child process and
- <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code>, which
+ <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code>, which
controls the maximum total number of threads that may be
launched.</p>
</div>
@@ -54,9 +54,9 @@
<li><img alt="" src="../images/right.gif" /> <a href="mod_unixd.html#group">Group</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#listen">Listen</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#listenbacklog">ListenBacklog</a></li>
-<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#maxclients">MaxClients</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#maxconnectionsperchild">MaxConnectionsPerChild</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#maxmemfree">MaxMemFree</a></li>
+<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#maxsparethreads">MaxSpareThreads</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#minsparethreads">MinSpareThreads</a></li>
<li><img alt="" src="../images/right.gif" /> <a href="mpm_common.html#pidfile">PidFile</a></li>
@@ -99,9 +99,9 @@
these directives from their default values. The maximum number of
clients that may be served simultaneously (i.e., the maximum total
number of threads in all processes) is determined by the
- <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code> directive.
+ <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code> directive.
The maximum number of active child processes is determined by
- the <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code>
+ the <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code>
directive divided by the <code class="directive"><a href="../mod/mpm_common.html#&#10; threadsperchild">
ThreadsPerChild</a></code> directive.</p>
@@ -111,7 +111,7 @@
starting it again. <code class="directive"><a href="../mod/mpm_common.html#serverlimit&#10; ">ServerLimit
</a></code> is a hard limit on the number of active child
processes, and must be greater than or equal to the
- <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code>
+ <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code>
directive divided by the <code class="directive"><a href="../mod/mpm_common.html#&#10; threadsperchild">
ThreadsPerChild</a></code> directive.
<code class="directive"><a href="../mod/mpm_common.html#threadlimit">ThreadLimit</a></code> is a hard
@@ -121,7 +121,7 @@
<p>In addition to the set of active child processes, there may
be additional child processes which are terminating, but where at
least one server thread is still handling an existing client
- connection. Up to <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code> terminating processes
+ connection. Up to <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code> terminating processes
may be present, though the actual number can be expected to be
much smaller. This behavior can be avoided by disabling the
termination of individual child processes, which is achieved using
@@ -133,7 +133,7 @@
<li>set the value of <code class="directive"><a href="../mod/mpm_common.html#&#10; maxsparethreads">
MaxSpareThreads</a></code> to the same value as
- <code class="directive"><a href="../mod/mpm_common.html#maxclients">MaxClients</a></code></li>
+ <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code></li>
</ul>
<p>A typical configuration of the process-thread controls in
@@ -142,7 +142,7 @@
<div class="example"><p><code>
ServerLimit 16<br />
StartServers 2<br />
- MaxClients 150<br />
+ MaxRequestWorkers 150<br />
MinSpareThreads 25<br />
MaxSpareThreads 75<br />
ThreadsPerChild 25