http://qs1969.pair.com?node_id=611984


in reply to Re: Speeding up Apache RewriteMap script.
in thread Speeding up Apache RewriteMap script.

I can happily accept that a custom piece of mod_perl is going to be more flexible. However, my requirements are fairly simple, and speed is the main issue.

Are you saying writing a mod_perl handler will be a better performance boost than anything that can be done to the mapper script?

-=( Graq )=-

  • Comment on Re^2: Speeding up Apache RewriteMap script.

Replies are listed 'Best First'.
Re^3: Speeding up Apache RewriteMap script.
by merlyn (Sage) on Apr 25, 2007 at 12:44 UTC
    Are you saying writing a mod_perl handler will be a better performance boost than anything that can be done to the mapper script?
    Yes, I believe that to be the case, simply by looking at all the work mod_rewrite has to go through to talk to your script, compared to just executing a simple bit of code already compiled into the on-board Perl interpreter.