Author: humbedooh
Date: Thu May 3 06:12:50 2012
New Revision: 1333317
URL: http://svn.apache.org/viewvc?rev=1333317&view=rev
Log:
Add a notion on the event mpm alongside the other general mpm types
Modified:
httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml
Modified: httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml?rev=1333317&r1=1333316&r2=1333317&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml (original)
+++ httpd/httpd/trunk/docs/manual/misc/perf-tuning.xml Thu May 3 06:12:50 2012
@@ -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
|