- Backported FR #54098 from 5.4 branch (Lowered process manager default value)
authorJérôme Loyet <fat@php.net>
Sat, 8 Oct 2011 13:38:28 +0000 (13:38 +0000)
committerJérôme Loyet <fat@php.net>
Sat, 8 Oct 2011 13:38:28 +0000 (13:38 +0000)
NEWS
sapi/fpm/php-fpm.conf.in

diff --git a/NEWS b/NEWS
index 77a805dda8ec84bacb286b04f757e7744fdb67b7..28f9ae22c66b742ff3f77ac01c18ced4cbceb9e0 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -75,6 +75,8 @@ PHP                                                                        NEWS
   . Fixed bug #53872 (internal corruption of phar). (Hannes)
 
 - PHP-FPM SAPI:
+  . Backported FR #54098 from 5.4 branch (Lowered process manager
+    default value). (fat)
   . Backported FR #52052 from 5.4 branch (Added partial syslog support). (fat)
   . Implemented FR #54577 (Enhanced status page with full status and details
     about each processes. Also provide a web page (status.html) for
index 8a8229351e0d1abb7af929a5ae6374d0421dbd43..1e42a600e51702da75c336cdae2fa9ddfe3db80f 100644 (file)
@@ -170,25 +170,26 @@ pm = dynamic
 ; This value sets the limit on the number of simultaneous requests that will be
 ; served. Equivalent to the ApacheMaxClients directive with mpm_prefork.
 ; Equivalent to the PHP_FCGI_CHILDREN environment variable in the original PHP
-; CGI.
+; CGI. The below defaults are based on a server without much resources. Don't
+; forget to tweak pm.* to fit your needs.
 ; Note: Used when pm is set to either 'static' or 'dynamic'
 ; Note: This value is mandatory.
-pm.max_children = 50
+pm.max_children = 5
 
 ; The number of child processes created on startup.
 ; Note: Used only when pm is set to 'dynamic'
 ; Default Value: min_spare_servers + (max_spare_servers - min_spare_servers) / 2
-;pm.start_servers = 20
+pm.start_servers = 2
 
 ; The desired minimum number of idle server processes.
 ; Note: Used only when pm is set to 'dynamic'
 ; Note: Mandatory when pm is set to 'dynamic'
-;pm.min_spare_servers = 5
+pm.min_spare_servers = 1
 
 ; The desired maximum number of idle server processes.
 ; Note: Used only when pm is set to 'dynamic'
 ; Note: Mandatory when pm is set to 'dynamic'
-;pm.max_spare_servers = 35
+pm.max_spare_servers = 3
  
 ; The number of requests each child process should execute before respawning.
 ; This can be useful to work around memory leaks in 3rd party libraries. For