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
This commit is contained in:
Justin Martin 2012-03-23 05:27:18 +00:00
parent c4e357af9a
commit 3d1de5938e

View file

@ -213,12 +213,18 @@
<listitem>
<para>
Choose how the process manager will control the number of child
processes. Possible values: <literal>static</literal>, <literal>dynamic</literal>.
processes. Possible values: <literal>static</literal>, <literal>ondemand</literal>,
<literal>dynamic</literal>.
This option is mandatory.
</para>
<para>
<literal>static</literal> - the number of child processes is fixed (<literal>pm.max_children</literal>).
</para>
<para>
<literal>ondemand</literal> - the processes spawn on demand (when requested,
as opposed to dynamic, where <literal>pm.start_servers</literal> are started
when the service is started.
</para>
<para>
<literal>dynamic</literal> - the number of child processes is set dynamically based on the
following directives: <literal>pm.max_children</literal>, <literal>pm.start_servers</literal>,