in reply to Re: Can one Apache process run multiple requests simultaneously?
in thread Can one Apache process run multiple requests simultaneously?

Unless you're running on Windows, you should use the prefork MPM (i.e. not threads) with Apache 2 when running mod_perl. Threads use more memory than forked processes because of the way they are implemented in Perl.
  • Comment on Re^2: Can one Apache process run multiple requests simultaneously?