diff options
author | Luca Toscano <elukey@apache.org> | 2016-12-04 11:08:06 +0100 |
---|---|---|
committer | Luca Toscano <elukey@apache.org> | 2016-12-04 11:08:06 +0100 |
commit | 038487508cc5bd4c26322aafcc448e5e8044a08c (patch) | |
tree | 6f14798ad1371868ecbebcaa1336092425f3953a /docs/manual/mod/event.html.en | |
parent | Added some notes in mpm-event's doc page (diff) | |
download | apache2-038487508cc5bd4c26322aafcc448e5e8044a08c.tar.xz apache2-038487508cc5bd4c26322aafcc448e5e8044a08c.zip |
mpm-event's doc rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1772513 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/event.html.en | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/manual/mod/event.html.en b/docs/manual/mod/event.html.en index ed35c97427..007fc72fba 100644 --- a/docs/manual/mod/event.html.en +++ b/docs/manual/mod/event.html.en @@ -182,7 +182,17 @@ of the <code class="directive">AsyncRequestWorkerFactor</code>.</p> graceful terminations in a much better way. Some of the improvements are:</p> <ul> <li>Allow the use of all the scoreboard slots up to - <code class="directive"><a href="../mod/mpm_common.html#serverlimit">ServerLimit</a></code>.</li> + <code class="directive"><a href="../mod/mpm_common.html#serverlimit">ServerLimit</a></code>. + <code class="directive"><a href="../mod/mpm_common.html#maxrequestworkers">MaxRequestWorkers</a></code> and + <code class="directive"><a href="../mod/mpm_common.html#threadsperchild">ThreadsPerChild</a></code> are used + to limit the amount of active processes, meanwhile + <code class="directive"><a href="../mod/mpm_common.html#serverlimit">ServerLimit</a></code> + takes also into account the ones doing a graceful + close to allow extra slots when needed. The idea is to use + <code class="directive"><a href="../mod/mpm_common.html#serverlimit">ServerLimit</a></code> to instruct httpd + about how many overall processes are tolerated before impacting + the system resources. + </li> <li>Force gracefully finishing processes to close their connections in keep-alive state.</li> <li>During graceful shutdown, if there are more running worker threads |