From: Jeff Trawick Date: Fri, 13 Sep 2002 15:57:23 +0000 (+0000) Subject: Add English doc for MaxMemFree X-Git-Tag: 2.0.42~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c414d4b70675c7e5f41fb316bcc55e97d9a9a311;p=thirdparty%2Fapache%2Fhttpd.git Add English doc for MaxMemFree Obtained from: Sander Striker git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96782 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en index 8ba0edf31b4..20004bd61e4 100644 --- a/docs/manual/mod/directives.html.en +++ b/docs/manual/mod/directives.html.en @@ -11,4 +11,4 @@ consistent format, and there is a dictionary of the terms used in their descriptions available.

-

 A  |  B  |  C  |  D  |  E  |  F  |  G  |  H  |  I  |  K  |  L  |  M  |  N  |  O  |  P  |  R  |  S  |  T  |  U  |  V  |  X 

\ No newline at end of file +

 A  |  B  |  C  |  D  |  E  |  F  |  G  |  H  |  I  |  K  |  L  |  M  |  N  |  O  |  P  |  R  |  S  |  T  |  U  |  V  |  X 

\ No newline at end of file diff --git a/docs/manual/mod/mpm_common.html.en b/docs/manual/mod/mpm_common.html.en index 9f6645417b6..a4d6bc50d26 100644 --- a/docs/manual/mod/mpm_common.html.en +++ b/docs/manual/mod/mpm_common.html.en @@ -7,7 +7,7 @@ -->mpm_common - Apache HTTP Server
<-
Apache > HTTP Server > Documentation > Version 2.0 > Modules

Apache Module mpm_common

Description: A collection of directives that are implemented by more than one multi-processing module (MPM)
Status: - MPM
top
top

CoreDumpDirectory Directive

Description: Directory where Apache attempts to switch before dumping core
Syntax: CoreDumpDirectory directory
Default: @@ -170,6 +170,17 @@ to serve requests
Syntax: To increase MaxClients to a value that requires more than 16 processes, you must also raise ServerLimit.

+
top

MaxMemFree Directive

Description: + Maximum amount of memory that the main allocator is allowed +to hold without calling free()
Syntax: + MaxMemFree number
Context: + server config
Status: + MPM
Module: + worker, prefork, mpm_netware
+

The MaxMemFree directive sets the + maximum number of free Kbytes that the main allocator is allowed + to hold without calling free(). When not set, or when set to + zero, the threshold will be set to unlimited.

top

MaxRequestsPerChild Directive

Description: Limit on the number of requests that an individual child server will handle during its life
Syntax: diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index 7aac9d69eaa..674af827402 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -250,6 +250,24 @@ to serve requests + +MaxMemFree +Maximum amount of memory that the main allocator is allowed +to hold without calling free() +MaxMemFree number +server config +workerprefork +mpm_netware + + + +

The MaxMemFree directive sets the + maximum number of free Kbytes that the main allocator is allowed + to hold without calling free(). When not set, or when set to + zero, the threshold will be set to unlimited.

+
+
+ MaxRequestsPerChild Limit on the number of requests that an individual child server diff --git a/docs/manual/mod/mpm_netware.html.en b/docs/manual/mod/mpm_netware.html.en index da8070f766d..d09da6961b9 100644 --- a/docs/manual/mod/mpm_netware.html.en +++ b/docs/manual/mod/mpm_netware.html.en @@ -43,7 +43,7 @@

See also: Setting which addresses and ports Apache uses.

-
top

MaxThreads Directive

Description: +
top

MaxThreads Directive

Description:
Syntax: MaxThreads number
Default: MaxThreads 250
Context: diff --git a/docs/manual/mod/mpm_netware.xml b/docs/manual/mod/mpm_netware.xml index 533b5ed84ef..79ddac71dde 100644 --- a/docs/manual/mod/mpm_netware.xml +++ b/docs/manual/mod/mpm_netware.xml @@ -50,6 +50,8 @@ ListenBacklog +MaxMemFree + MaxRequestsPerChild SendBufferSize diff --git a/docs/manual/mod/prefork.html.en b/docs/manual/mod/prefork.html.en index 13b59032515..f7debb5322e 100644 --- a/docs/manual/mod/prefork.html.en +++ b/docs/manual/mod/prefork.html.en @@ -23,7 +23,7 @@ small enough to assure that there is enough physical RAM for all processes.

-
top

How it Works

A single control process is responsible for launching child processes which listen for connections and serve them when they diff --git a/docs/manual/mod/prefork.xml b/docs/manual/mod/prefork.xml index 544c722ed9b..d1dd0a999b6 100644 --- a/docs/manual/mod/prefork.xml +++ b/docs/manual/mod/prefork.xml @@ -91,6 +91,10 @@ MaxClients + +MaxMemFree + + MaxRequestsPerChild diff --git a/docs/manual/mod/worker.html.en b/docs/manual/mod/worker.html.en index 591e731182f..bb704dc7232 100644 --- a/docs/manual/mod/worker.html.en +++ b/docs/manual/mod/worker.html.en @@ -24,7 +24,7 @@ controls the maximum total number of threads that may be launched.

-
top

How it Works

Each process has a fixed number of threads. The server adjusts to handle load by diff --git a/docs/manual/mod/worker.xml b/docs/manual/mod/worker.xml index 143a9d81a28..73ab404bbbf 100644 --- a/docs/manual/mod/worker.xml +++ b/docs/manual/mod/worker.xml @@ -106,6 +106,8 @@ ServerLimit 16 MaxClients +MaxMemFree + MaxRequestsPerChild MaxSpareThreads