[Jifty-commit] r2023 - jifty/trunk/lib/Jifty/Script

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Oct 13 17:17:34 EDT 2006


Author: clkao
Date: Fri Oct 13 17:17:34 2006
New Revision: 2023

Modified:
   jifty/trunk/lib/Jifty/Script/FastCGI.pm

Log:
doc about maxrequests and gladiator in fastcgi .

Modified: jifty/trunk/lib/Jifty/Script/FastCGI.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Script/FastCGI.pm	(original)
+++ jifty/trunk/lib/Jifty/Script/FastCGI.pm	Fri Oct 13 17:17:34 2006
@@ -46,13 +46,20 @@
         )
     )
 
+If you have MaxRequests options under FastCGI in your config.yml, or
+commandline option C<--maxrequests=N> assigned, the fastcgi process
+will exit after serving N requests.  Additionally, if you have
+Gladiator options under FastCGI in your config.yml enabled, Jifty will
+log your memory usable summary when the child is exiting.  You will
+need to Install L<Devel::Gladiator> for this to be useful.
+
 =head2 options
 
 =cut
 
 sub options {
     (
-        'requests=i' => 'maxrequests',
+        'maxrequests=i' => 'maxrequests',
         'gladitator' => 'gladiator'
     );
 }


More information about the Jifty-commit mailing list