mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
c4e357af9a
commit
3d1de5938e
1 changed files with 7 additions and 1 deletions
|
@ -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>,
|
||||
|
|
Loading…
Reference in a new issue