From d3933eca000256d920271741f1d58c63287f76e0 Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Mon, 1 Jul 2002 20:24:10 +0000 Subject: [PATCH] Document what the threadpool MPM is git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95934 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/experimental/threadpool/README | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 server/mpm/experimental/threadpool/README 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. -- 2.40.0