From: Justin Erenkrantz Date: Mon, 27 Aug 2001 20:55:09 +0000 (+0000) Subject: As the worker MPM is really an alternative to the threaded MPM ... X-Git-Tag: 2.0.25~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c28ee4d9dc9853a6367445255a06da86ac909b2;p=apache As the worker MPM is really an alternative to the threaded MPM (and hopefully it'll be a replacement), the httpd.conf settings are identical. Submitted by: Aaron Bannert Reviewed by: Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90738 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/conf/highperformance-std.conf b/docs/conf/highperformance-std.conf index 60d00816ed..6f7c049833 100755 --- a/docs/conf/highperformance-std.conf +++ b/docs/conf/highperformance-std.conf @@ -34,6 +34,14 @@ MaxSpareThreads 10 ThreadsPerChild 25 + +MaxClients 8 +StartServers 3 +MinSpareThreads 5 +MaxSpareThreads 10 +ThreadsPerChild 25 + + # Assume no memory leaks at all MaxRequestsPerChild 0 diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index 89c6db2fd9..1b7d168410 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -130,6 +130,22 @@ ThreadsPerChild 25 MaxRequestsPerChild 0 +# 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 + +StartServers 3 +MaxClients 8 +MinSpareThreads 5 +MaxSpareThreads 75 +ThreadsPerChild 25 +MaxRequestsPerChild 0 + + # perchild MPM # NumServers: constant number of server processes # StartThreads: initial number of worker threads in each server process