Submitted by: Aaron Bannert <aaron@clove.org>
Reviewed by: Justin Erenkrantz
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90738
13f79535-47bb-0310-9956-
ffa450edef68
ThreadsPerChild 25
</IfModule>
+<IfModule worker.c>
+MaxClients 8
+StartServers 3
+MinSpareThreads 5
+MaxSpareThreads 10
+ThreadsPerChild 25
+</IfModule>
+
# Assume no memory leaks at all
MaxRequestsPerChild 0
MaxRequestsPerChild 0
</IfModule>
+# worker MPM
+# StartServers: initial number of server processes to start
+# MaxClients: maximum number of server processes allowed to start
+# MinSpareThreads: minimum number of worker threads which are kept spare
+# MaxSpareThreads: maximum number of worker threads which are kept spare
+# ThreadsPerChild: constant number of worker threads in each server process
+# MaxRequestsPerChild: maximum number of requests a server process serves
+<IfModule worker.c>
+StartServers 3
+MaxClients 8
+MinSpareThreads 5
+MaxSpareThreads 75
+ThreadsPerChild 25
+MaxRequestsPerChild 0
+</IfModule>
+
# perchild MPM
# NumServers: constant number of server processes
# StartThreads: initial number of worker threads in each server process