On Thu, 2005-01-06 at 12:39 -0800, Jay Scherrer wrote: > With FC3 and SElinux threads are more prevalent. I thought thats why I > was upgrading to Apache2. Use of better threading technology.
On Linux, I recommend you use preforking, not threads, with mod_perl 2. It uses far less memory than threading because of the copy-on-write savings. It also avoids any possible thread safety issues in the CPAN modules you use. - Perrin