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


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

The mapper script only reads the file once for each VirtualHost (when Apache starts). It then sits in memory.

configuration values as assignments in httpd.conf

I'm not sure how this will solve my problem (perhaps I have not explained the problem well enough). Do you have a snippet example?

-=( Graq )=-

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

Replies are listed 'Best First'.
Re^3: Speeding up Apache RewriteMap script.
by Moron (Curate) on Apr 25, 2007 at 13:21 UTC
    In your OP you said "As this script is going to be hit so many times by the webserver, I wondered if anyone had ideas on speeding it up?"

    So if that is no longer perceived to be the case, I guess we can close this issue now?

    __________________________________________________________________________________

    ^M Free your mind!

    Key to hats: ^I=white ^B=black ^P=yellow ^E=red ^C=green ^M=blue - see Moron's scratchpad for fuller explanation.

      Apologies for not being clear.

      Apache opens the script and holds it open for its lifetime. RewriteMap writes to it (hence the while(<STDIN>){..} loop) and waits for output from STDOUT.

      For every such mapping (read: every http request), the lookup method is called. I assumed that that is where the main speed up could be attained.

      Although I'm not sure how moot this is with merlyn's reply in play

      -=( Graq )=-