
stas at apache
Jul 19, 2006, 3:55 PM
Post #1 of 1
(954 views)
Permalink
|
|
svn commit: r423650 - /perl/modperl/docs/trunk/src/docs/1.0/guide/performance.pod
|
|
Author: stas Date: Wed Jul 19 15:55:03 2006 New Revision: 423650 URL: http://svn.apache.org/viewvc?rev=423650&view=rev Log: MinSpareServers should be less than MaxSpareServers submited by: jeff.deifik <jeff.deifik [at] ticketmaster> Modified: perl/modperl/docs/trunk/src/docs/1.0/guide/performance.pod Modified: perl/modperl/docs/trunk/src/docs/1.0/guide/performance.pod URL: http://svn.apache.org/viewvc/perl/modperl/docs/trunk/src/docs/1.0/guide/performance.pod?rev=423650&r1=423649&r2=423650&view=diff ============================================================================== --- perl/modperl/docs/trunk/src/docs/1.0/guide/performance.pod (original) +++ perl/modperl/docs/trunk/src/docs/1.0/guide/performance.pod Wed Jul 19 15:55:03 2006 @@ -2760,8 +2760,8 @@ The above tests were performed with the following configuration: - MinSpareServers 8 - MaxSpareServers 6 + MinSpareServers 6 + MaxSpareServers 8 StartServers 10 MaxClients 50 MaxRequestsPerChild 1500 @@ -2769,8 +2769,8 @@ Now let's kill each child after it serves a single request. We will use the following configuration: - MinSpareServers 8 - MaxSpareServers 6 + MinSpareServers 6 + MaxSpareServers 8 StartServers 10 MaxClients 100 MaxRequestsPerChild 1 @@ -2790,8 +2790,8 @@ Now let's reset C<MaxRequestsPerChild> to 1500, but reduce C<MaxClients> to 10 and run the same test: - MinSpareServers 8 - MaxSpareServers 6 + MinSpareServers 6 + MaxSpareServers 8 StartServers 10 MaxClients 10 MaxRequestsPerChild 1500 --------------------------------------------------------------------- To unsubscribe, e-mail: docs-cvs-unsubscribe [at] perl For additional commands, e-mail: docs-cvs-help [at] perl
|