On Mon, Jun 22, 2009 at 5:59 PM, Sean Thorne<sean.tho...@gmail.com> wrote: > I could switch to prefork, but > the servers I have don't have enough RAM to handle the load I need them too.
If you want to save RAM, you should run your mod_perl server in prefork, which uses less memory due to copy-on-write sharing. Then run a reverse proxy in front of it to handle the static files and buffering. - Perrin