From 3d1de5938ef6812f13dbe7d067190e898f5351a9 Mon Sep 17 00:00:00 2001 From: Justin Martin Date: Fri, 23 Mar 2012 05:27:18 +0000 Subject: [PATCH] Added "ondemand" process manager config option. Patch by Vid Luther (vluther). git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@324485 c90b9560-bf6c-de11-be94-00142212c4b1 --- install/fpm/configuration.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install/fpm/configuration.xml b/install/fpm/configuration.xml index 88588379c5..77f731ddde 100644 --- a/install/fpm/configuration.xml +++ b/install/fpm/configuration.xml @@ -213,12 +213,18 @@ Choose how the process manager will control the number of child - processes. Possible values: static, dynamic. + processes. Possible values: static, ondemand, + dynamic. This option is mandatory. static - the number of child processes is fixed (pm.max_children). + + ondemand - the processes spawn on demand (when requested, + as opposed to dynamic, where pm.start_servers are started + when the service is started. + dynamic - the number of child processes is set dynamically based on the following directives: pm.max_children, pm.start_servers,