bottleneck testcase based on rubbos
[bottlenecks.git] / rubbos / app / httpd-2.0.64 / server / mpm / experimental / threadpool / README
1 Threadpool MPM:
2 This is an experimental variant of the standard worker MPM.
3 Rather than queuing connections like the worker MPM, the threadpool
4 MPM queues idle worker threads and hands each accepted connection
5 to the next available worker.
6
7 The threadpool MPM can't match the performance of the worker MPM
8 in benchmark testing.  As of 2.0.39, some of the key load-throtting
9 concepts from the threadpool MPM have been incorporated into the
10 worker MPM.  The threadpool code is useful primarily as a research
11 platform; for general-purpose use, and for any production environments,
12 use worker instead.