Re: mod_perl child processes using way too much RAM

2001-07-02 Thread Perrin Harkins
2. Cause any httpd_perl child process which exceeds 20 megabytes in memory usage to terminate after it's done. Apache::SizeLimit (and others) can do this. - Perrin

RE: mod_perl child processes using way too much RAM

2001-07-02 Thread Scott Stephenson
Title: RE: mod_perl child processes using way too much RAM Checkout Apache::SizeLimit. You can put something like this in your startup.pl: use Apache::SizeLimit; $Apache::SizeLimit::MAX_PROCESS_UNSHARED_SIZE = 2; $Apache::SizeLimit::CHECK_EVERY_N_REQUESTS = 2; -Scott -Original