stas        2002/12/05 23:45:36

  Modified:    src/docs/2.0/user/config config.pod
  Log:
  document the default interpreter pool's settings
  
  Revision  Changes    Path
  1.30      +18 -2     modperl-docs/src/docs/2.0/user/config/config.pod
  
  Index: config.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/user/config/config.pod,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- config.pod        4 Dec 2002 02:59:21 -0000       1.29
  +++ config.pod        6 Dec 2002 07:45:36 -0000       1.30
  @@ -700,6 +700,8 @@
   
   The number of interpreters to clone at startup time.
   
  +Default value: 3
  +
   =head2 C<PerlInterpMax>
   
   If all running interpreters are in use, mod_perl will clone new
  @@ -708,22 +710,33 @@
   will block (via COND_WAIT()) until one becomes available (signaled via
   COND_SIGNAL()).
   
  +Default value: 5
  +
   =head2 C<PerlInterpMinSpare>
   
   The minimum number of available interpreters this parameter will clone
   interpreters up to C<PerlInterpMax>, before a request comes in.
   
  +Default value: 3
  +
  +
   =head2 C<PerlInterpMaxSpare>
   
   mod_perl will throttle down the number of interpreters to this number
   as those in use become available.
   
  +Default value: 3
  +
  +
   =head2 C<PerlInterpMaxRequests>
   
   The maximum number of requests an interpreter should serve, the
   interpreter is destroyed when the number is reached and replaced with
   a fresh clone.
   
  +Default value: 2000
  +
  +
   =head2 C<PerlInterpScope>
   
   As mentioned, when a request in a threaded mpm is handled by mod_perl,
  @@ -769,6 +782,9 @@
   
     PerlInterpScope connection
   
  +Default value: C<request>
  +
  +
   
   =head1 Debug Directives
   
  @@ -800,8 +816,8 @@
     s ( 64) perl sections
     t (128) benchmark-ish timings
   
  -When C<level> is not specified, the tracing level will be set to the
  -value of the C<$ENV{MOD_PERL_TRACE}> environment variable.
  +When C<PerlTrace> is not specified, the tracing level will be set to
  +the value of the C<$ENV{MOD_PERL_TRACE}> environment variable.
   
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to