From: Brian Pane Date: Mon, 1 Jul 2002 20:24:10 +0000 (+0000) Subject: Document what the threadpool MPM is X-Git-Tag: 2.0.40~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3933eca000256d920271741f1d58c63287f76e0;p=apache Document what the threadpool MPM is git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95934 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/experimental/threadpool/README b/server/mpm/experimental/threadpool/README new file mode 100644 index 0000000000..86e8524cb6 --- /dev/null +++ b/server/mpm/experimental/threadpool/README @@ -0,0 +1,12 @@ +Threadpool MPM: +This is an experimental variant of the standard worker MPM. +Rather than queuing connections like the worker MPM, the threadpool +MPM queues idle worker threads and hands each accepted connection +to the next available worker. + +The threadpool MPM can't match the performance of the worker MPM +in benchmark testing. As of 2.0.39, some of the key load-throtting +concepts from the threadpool MPM have been incorporated into the +worker MPM. The threadpool code is useful primarily as a research +platform; for general-purpose use, and for any production environments, +use worker instead.