From: Joshua Slive
Date: Wed, 21 Aug 2002 13:52:53 +0000 (+0000)
Subject: One further change to the worker docs regarding the MaxClients confusion.
X-Git-Tag: AGB_BEFORE_AAA_CHANGES~204
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8ef6fe380726973f68616055b002ee05fbc6ba3;p=apache
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
---
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.
The most important directives used to control this MPM are
- ThreadsPerChild
and
- MaxClients
. By multiplying
- together the value of these directives you define the total number
- of simultaneous connections that the server can handle.
+ ThreadsPerChild
, which
+ controls the number of threads deployed by each child process and
+ MaxClients
, which
+ controls the maximum total number of threads that may be
+ launched.
Directives
See also
How it Works
diff --git a/docs/manual/mod/worker.xml b/docs/manual/mod/worker.xml
index 38a94eb323..143a9d81a2 100644
--- a/docs/manual/mod/worker.xml
+++ b/docs/manual/mod/worker.xml
@@ -18,10 +18,11 @@
keeping multiple processes available, each with many threads.
The most important directives used to control this MPM are
- ThreadsPerChild and
- MaxClients. By multiplying
- together the value of these directives you define the total number
- of simultaneous connections that the server can handle.
+ ThreadsPerChild, which
+ controls the number of threads deployed by each child process and
+ MaxClients, which
+ controls the maximum total number of threads that may be
+ launched.
Setting which addresses and