]> granicus.if.org Git - apache/commitdiff
Document what the threadpool MPM is
authorBrian Pane <brianp@apache.org>
Mon, 1 Jul 2002 20:24:10 +0000 (20:24 +0000)
committerBrian Pane <brianp@apache.org>
Mon, 1 Jul 2002 20:24:10 +0000 (20:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95934 13f79535-47bb-0310-9956-ffa450edef68

server/mpm/experimental/threadpool/README [new file with mode: 0644]

diff --git a/server/mpm/experimental/threadpool/README b/server/mpm/experimental/threadpool/README
new file mode 100644 (file)
index 0000000..86e8524
--- /dev/null
@@ -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.