summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/worker.html.en
diff options
context:
space:
mode:
authorAndré Malo <nd@apache.org>2005-12-10 16:52:24 +0100
committerAndré Malo <nd@apache.org>2005-12-10 16:52:24 +0100
commit618802d904c42f8078c60990d22b93f805c0719c (patch)
treeabc064b179e5b5a0f0548bc5e24a6998f4123e07 /docs/manual/mod/worker.html.en
parentfix xml validation error (diff)
downloadapache2-618802d904c42f8078c60990d22b93f805c0719c.tar.xz
apache2-618802d904c42f8078c60990d22b93f805c0719c.zip
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@355753 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/worker.html.en')
-rw-r--r--docs/manual/mod/worker.html.en12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/manual/mod/worker.html.en b/docs/manual/mod/worker.html.en
index c86ec6e216..cdd8dadd43 100644
--- a/docs/manual/mod/worker.html.en
+++ b/docs/manual/mod/worker.html.en
@@ -33,9 +33,9 @@
<h3>Summary</h3>
<p>This Multi-Processing Module (MPM) implements a hybrid
- multi-process multi-threaded server. By using threads to serve
+ multi-process multi-threaded server. By using threads to serve
requests, it is able to serve a large number of requests with
- less system resources than a process-based server. Yet it
+ fewer system resources than a process-based server. However, it
retains much of the stability of a process-based server by
keeping multiple processes available, each with many threads.</p>
@@ -94,7 +94,7 @@ uses</a></li>
threads or processes to be created before their requests can be
served. The number of processes that will initially launched is
set by the <code class="directive"><a href="../mod/mpm_common.html#startservers">StartServers</a></code>
- directive. Then during operation, Apache assesses the total number
+ directive. During operation, Apache assesses the total number
of idle threads in all processes, and forks or kills processes to
keep this number within the boundaries specified by <code class="directive"><a href="../mod/mpm_common.html#minsparethreads">MinSpareThreads</a></code> and <code class="directive"><a href="../mod/mpm_common.html#maxsparethreads">MaxSpareThreads</a></code>. Since this
process is very self-regulating, it is rarely necessary to modify
@@ -122,13 +122,13 @@ uses</a></li>
non-default values are specified for these directives, they
should appear before other <code class="module"><a href="../mod/worker.html">worker</a></code> directives.</p>
- <p>In addition to a the set of active child processes, there may
- be additional child processes which are terminating but where at
+ <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
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 by
+ termination of individual child processes, which is achieved using
the following:</p>
<ul>