|
NAMEFCGI::Engine::ProcManager::Constrained - FastCGI applications with memory and number of request limits.DESCRIPTIONA constrained process manager that restarts child workers after a number of requests or if they use too much memory.Most of the memory usage code is stolen from Apache2::SizeLimit. ATTRIBUTESmax_requestsThe number of requests a child process can handle before being terminated.0 (the default) means let child processes do an infinite number of requests sizecheck_num_requestsThe number of requests between a check on the process size taking place.0 (the default) means never attempt to check the process size. max_process_sizeThe maximum size of the process (both shared and unshared memory) in KB.0 (the default) means unlimited. max_unshared_sizeThe maximum amount of memory in KB this process can have that isn't Copy-On-Write shared with other processes.0 (the default) means unlimited. min_share_sizeThe minimum amount of memory in KB this process can have Copy-On-Write from it's parent process before it is terminate.METHODSI will fill this in more eventually, but for now if you really wanna know, read the source.SEE ALSO
BUGSAll complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.AUTHORTomas Doran <bobtfish@bobtfish.net>COPYRIGHT AND LICENSECode sections copied from Apache2::SizeLimit are Copyright their respective authors.Copyright 2007-2010 by Infinity Interactive, Inc. <http://www.iinteractive.com> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |