From: Daniel Gruno Date: Thu, 3 May 2012 06:12:50 +0000 (+0000) Subject: Add a notion on the event mpm alongside the other general mpm types X-Git-Tag: 2.5.0-alpha~6917 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5722ffee74c909108b22148a979d6c0f4addfd16;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/docs/manual/misc/perf-tuning.xml b/docs/manual/misc/perf-tuning.xml index 5fe5faafd85..a38d55619f0 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. + +
  • The event 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.
  • The prefork MPM uses multiple child processes with one thread each. Each process handles