diff options
author | André Malo <nd@apache.org> | 2002-10-18 04:18:04 +0200 |
---|---|---|
committer | André Malo <nd@apache.org> | 2002-10-18 04:18:04 +0200 |
commit | a75d816777c6f87c9c1107eb8de567d4df83cc34 (patch) | |
tree | 964e610ccf6c4328df6039db494ba2300d9a16d8 /docs/manual/mod/worker.xml | |
parent | - fix context info of ModMimeUsePathInfo (ACCESS_CONF) (diff) | |
download | apache2-a75d816777c6f87c9c1107eb8de567d4df83cc34.tar.xz apache2-a75d816777c6f87c9c1107eb8de567d4df83cc34.zip |
the MPM module docs:
- <em> -> <var>
- a little other markup changes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97258 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/worker.xml')
-rw-r--r-- | docs/manual/mod/worker.xml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/docs/manual/mod/worker.xml b/docs/manual/mod/worker.xml index 73ab404bbb..f3b73ed2f8 100644 --- a/docs/manual/mod/worker.xml +++ b/docs/manual/mod/worker.xml @@ -28,7 +28,7 @@ <seealso><a href="../bind.html">Setting which addresses and ports Apache uses</a></seealso> -<section><title>How it Works</title> +<section id="how-it-works"><title>How it Works</title> <p>Each process has a fixed number of threads. The server adjusts to handle load by increasing or decreasing the number of processes.</p> @@ -40,7 +40,7 @@ individual threads then listen for connections and serve them when they arrive.</p> - <p>Apache always tries to maintain a pool of <em>spare</em> or + <p>Apache always tries to maintain a pool of <dfn>spare</dfn> or idle server threads, which stand ready to serve incoming requests. In this way, clients do not need to wait for a new threads or processes to be created before their requests can be @@ -67,12 +67,14 @@ <p>A typical configuration of the process-thread controls in the <module>worker</module> MPM could look as follows:</p> -<example><pre>StartServers 2 -MaxClients 150 -MinSpareThreads 25 -MaxSpareThreads 75 -ThreadsPerChild 25 -ServerLimit 16</pre></example> + <example> + StartServers 2<br /> + MaxClients 150<br /> + MinSpareThreads 25<br /> + MaxSpareThreads 75<br /> + ThreadsPerChild 25<br /> + ServerLimit 16 + </example> <p>While the parent process is usually started as root under Unix in order to bind to port 80, the child processes and threads are |