You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by aa...@apache.org on 2002/04/02 03:07:43 UTC

cvs commit: httpd-2.0/docs/manual/mod mpm_common.xml

aaron       02/04/01 17:07:43

  Modified:    docs/manual/mod mpm_common.xml
  Log:
  Update the docs on the ScoreBoardFile directive for the new
  apr_shm.h API and the removal of the old SCOREBOARD_FILE stuff.
  
  Revision  Changes    Path
  1.5       +12 -10    httpd-2.0/docs/manual/mod/mpm_common.xml
  
  Index: mpm_common.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mpm_common.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- mpm_common.xml	12 Mar 2002 15:26:36 -0000	1.4
  +++ mpm_common.xml	2 Apr 2002 01:07:43 -0000	1.5
  @@ -383,16 +383,18 @@
   <module>prefork</module></modulelist>
   
   <usage>
  -    <p>The <directive>ScoreBoardFile</directive> 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.</p>
  +    <p>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.</p>
   
  -    <p>If you have to use a <directive>ScoreBoardFile</directive> then
  +    <p>File-based shared memory is useful for third-party applications
  +    that require direct access to the scoreboard.</p>
  +
  +    <p>If you use a <directive>ScoreBoardFile</directive> 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 <a href="../misc/security_tips.html">security</a>.</p>
  @@ -611,4 +613,4 @@
   </usage>
   </directivesynopsis>
   
  -</modulesynopsis>
  \ No newline at end of file
  +</modulesynopsis>
  
  
  

Re: cvs commit: httpd-2.0/docs/manual/mod mpm_common.xml

Posted by Cliff Woolley <jw...@virginia.edu>.
On Mon, 1 Apr 2002, Aaron Bannert wrote:

> Can someone verify both my grammar and my xml syntax? :)

I have three little grammar nits with it.  I'll fix them in a little
while.  As for XML syntax, that's for someone else to decide.  :)

--Cliff

--------------------------------------------------------------
   Cliff Woolley
   cliffwoolley@yahoo.com
   Charlottesville, VA



Re: cvs commit: httpd-2.0/docs/manual/mod mpm_common.xml

Posted by Aaron Bannert <aa...@clove.org>.
On Tue, Apr 02, 2002 at 01:07:43AM -0000, aaron@apache.org wrote:
> aaron       02/04/01 17:07:43
> 
>   Modified:    docs/manual/mod mpm_common.xml
>   Log:
>   Update the docs on the ScoreBoardFile directive for the new
>   apr_shm.h API and the removal of the old SCOREBOARD_FILE stuff.

Can someone verify both my grammar and my xml syntax? :)

-aaron