Re: mod_perl: performance tips

2008-06-26 Thread Torsten Foertsch
On Wed 25 Jun 2008, tyju tiui wrote: > but it is still way behind the C module (4 - 5 times fewer requests per > second). Is mod_perl just that much slower than a pure C module? Yes it is slower. MP registers hooks at almost all places possible. Your pure C module probably uses only 1 or 2 of the

Re: mod_perl: performance tips

2008-06-25 Thread Perrin Harkins
On Wed, Jun 25, 2008 at 4:24 PM, tyju tiui <[EMAIL PROTECTED]> wrote: > hmmm, I read the performance chapters from http://www.modperlbook.org/ but > there really isn't much in the way of mod_perl-specific tweaks. > It's mostly about hardware tips, benchmarking tips, and apache server tweaks > (an

Re: mod_perl: performance tips

2008-06-25 Thread Michael Peters
tyju tiui wrote: > hmmm, I read the performance chapters from http://www.modperlbook.org/ but > there really isn't much in the way of mod_perl-specific tweaks. > It's mostly about hardware tips, benchmarking tips, and apache server tweaks > (and of course perl language tweaks). mod_perl is the c

Re: mod_perl: performance tips

2008-06-25 Thread tyju tiui
ing for performance tweaks to begin with - also because I really want to use perl in place of C :-) Ty - Original Message From: Christopher Taranto <[EMAIL PROTECTED]> To: tyju tiui <[EMAIL PROTECTED]> Cc: modperl@perl.apache.org Sent: Wednesday, June 25, 2008 11:19:35 AM

Re: mod_perl: performance tips

2008-06-25 Thread adam . prime
Quoting Perrin Harkins <[EMAIL PROTECTED]>: On Wed, Jun 25, 2008 at 11:19 AM, Christopher Taranto <[EMAIL PROTECTED]> wrote: Try here: http://www.modperlbook.org/ Specifically - Part II: mod_perl Performance Yes, read that, profile your code, and then ask for help with specific slow parts.

Re: mod_perl: performance tips

2008-06-25 Thread Perrin Harkins
On Wed, Jun 25, 2008 at 11:19 AM, Christopher Taranto <[EMAIL PROTECTED]> wrote: > Try here: > > http://www.modperlbook.org/ > > Specifically - Part II: mod_perl Performance Yes, read that, profile your code, and then ask for help with specific slow parts. There's lots of performance information

Re: mod_perl: performance tips

2008-06-25 Thread Christopher Taranto
On Wed, June 25, 2008 7:57 am, tyju tiui wrote: > Hi, > > > I'm curious to know if anyone has any mod_perl-specific performance tips? > I've scoured google but most of the performance tips are related > specifically to perl which is good, but my application is still quite > slow. > > I managed to