diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-05-03 08:12:50 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-05-03 08:12:50 +0200 |
commit | 5722ffee74c909108b22148a979d6c0f4addfd16 (patch) | |
tree | fabd1d407176aa483d4f551490d5fa12d61e1411 | |
parent | Typo in page anchor. (diff) | |
download | apache2-5722ffee74c909108b22148a979d6c0f4addfd16.tar.xz apache2-5722ffee74c909108b22148a979d6c0f4addfd16.zip |
Add a notion on the event mpm alongside the other general mpm types
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1333317 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | docs/manual/misc/perf-tuning.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/manual/misc/perf-tuning.xml b/docs/manual/misc/perf-tuning.xml index 5fe5faafd8..a38d55619f 100644 --- a/docs/manual/misc/perf-tuning.xml +++ b/docs/manual/misc/perf-tuning.xml @@ -431,6 +431,12 @@ DocumentRoot /www/htdocs one connection at a time. Worker generally is a good choice for high-traffic servers because it has a smaller memory footprint than the prefork MPM.</li> + + <li>The <module>event</module> MPM is threaded like the + Worker MPM, but is designed to allow more requests to be + served simultaneously by passing off some processing work + to supporting threads, freeing up the main threads to work + on new requests.</li> <li>The <module>prefork</module> MPM uses multiple child processes with one thread each. Each process handles |