summaryrefslogtreecommitdiff
path: root/docs/manual/mod/worker.html.en
diff options
context:
space:
mode:
authorJoshua Slive <slive@apache.org>2002-08-21 13:52:53 +0000
committerJoshua Slive <slive@apache.org>2002-08-21 13:52:53 +0000
commitc8ef6fe380726973f68616055b002ee05fbc6ba3 (patch)
treee17bf910c0a3525f030daaacbae3005c2f8335cb /docs/manual/mod/worker.html.en
parente9851bb0ea1d3802a225eac2b97fedf048a6ce75 (diff)
downloadhttpd-c8ef6fe380726973f68616055b002ee05fbc6ba3.tar.gz
One further change to the worker docs regarding the MaxClients confusion.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96466 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/worker.html.en')
-rw-r--r--docs/manual/mod/worker.html.en9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/manual/mod/worker.html.en b/docs/manual/mod/worker.html.en
index 7e94ea005e..c3203a28c4 100644
--- a/docs/manual/mod/worker.html.en
+++ b/docs/manual/mod/worker.html.en
@@ -15,10 +15,11 @@
keeping multiple processes available, each with many threads.</p>
<p>The most important directives used to control this MPM are
- <a href="../mod/mpm_common.html#threadsperchild" class="directive"><code class="directive">ThreadsPerChild</code></a> and
- <a href="../mod/mpm_common.html#maxclients" class="directive"><code class="directive">MaxClients</code></a>. By multiplying
- together the value of these directives you define the total number
- of simultaneous connections that the server can handle.</p>
+ <a href="../mod/mpm_common.html#threadsperchild" class="directive"><code class="directive">ThreadsPerChild</code></a>, which
+ controls the number of threads deployed by each child process and
+ <a href="../mod/mpm_common.html#maxclients" class="directive"><code class="directive">MaxClients</code></a>, which
+ controls the maximum total number of threads that may be
+ launched.</p>
<h2>Directives</h2><ul><li><a href="mpm_common.html#coredumpdirectory">CoreDumpDirectory</a></li><li><a href="mpm_common.html#group">Group</a></li><li><a href="mpm_common.html#listen">Listen</a></li><li><a href="mpm_common.html#listenbacklog">ListenBacklog</a></li><li><a href="mpm_common.html#lockfile">LockFile</a></li><li><a href="mpm_common.html#maxclients">MaxClients</a></li><li><a href="mpm_common.html#maxrequestsperchild">MaxRequestsPerChild</a></li><li><a href="mpm_common.html#maxsparethreads">MaxSpareThreads</a></li><li><a href="mpm_common.html#minsparethreads">MinSpareThreads</a></li><li><a href="mpm_common.html#pidfile">PidFile</a></li><li><a href="mpm_common.html#scoreboardfile">ScoreBoardFile</a></li><li><a href="mpm_common.html#sendbuffersize">SendBufferSize</a></li><li><a href="mpm_common.html#serverlimit">ServerLimit</a></li><li><a href="mpm_common.html#startservers">StartServers</a></li><li><a href="mpm_common.html#threadlimit">ThreadLimit</a></li><li><a href="mpm_common.html#threadsperchild">ThreadsPerChild</a></li><li><a href="mpm_common.html#user">User</a></li></ul><p><strong>See also </strong></p><ul><li><a href="../bind.html">Setting which addresses and
ports Apache uses</a></li></ul><h2>How it Works</h2>