in reply to Re^8: How to do parallel processing within mod_perl
in thread How to do parallel processing within mod_perl

I don't see how you could avoid having a lot loaded in a web situation. You can delay loading your own libraries, but things needed just to handle the persistent daemon itself (mod_perl in this case) have to be loaded.

It's easy to see the benefits of COW for yourself. Move the libraries you use into a mod_perl startup phase and watch the free memory on your machine go up. It works.

  • Comment on Re^9: How to do parallel processing within mod_perl