From: Aaron Bannert Date: Tue, 2 Apr 2002 01:07:43 +0000 (+0000) Subject: Update the docs on the ScoreBoardFile directive for the new X-Git-Tag: 2.0.35~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=19edeaba1fad5e086244ba01cc497cb92475f7ff;p=thirdparty%2Fapache%2Fhttpd.git Update the docs on the ScoreBoardFile directive for the new apr_shm.h API and the removal of the old SCOREBOARD_FILE stuff. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94370 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mpm_common.xml b/docs/manual/mod/mpm_common.xml index 3cce7077708..974522a6cc0 100644 --- a/docs/manual/mod/mpm_common.xml +++ b/docs/manual/mod/mpm_common.xml @@ -383,16 +383,18 @@ the child processes prefork -

The ScoreBoardFile directive is required - on some architectures to place a file that the server will use to - communicate between its children and the parent. The easiest way - to find out if your architecture requires a scoreboard file is to - run Apache and see if it creates the file named by the - directive. If your architecture requires it then you must ensure - that this file is not used at the same time by more than one - invocation of Apache.

- -

If you have to use a ScoreBoardFile then +

Apache uses a scoreboard to communicate between its children + and the parent. Some architectures require a file to facilitate + this communication. If left unspecified, Apache first attempts to + create the scoreboard entirely in memory (using anonymous shared + memory), and failing that will attempt to create the file on disk + (using file-based shared memory). Specifying this directive causes + Apache to always create the file on the disk.

+ +

File-based shared memory is useful for third-party applications + that require direct access to the scoreboard.

+ +

If you use a ScoreBoardFile then you may see improved speed by placing it on a RAM disk. But be careful that you heed the same warnings about log file placement and security.

@@ -611,4 +613,4 @@ the dangers are.

- \ No newline at end of file +