in reply to what does shift do?

I think I'm starting to understand...

Look what's inside of $r...
Apache=SCALAR(0x87e40c0)
If I'm running my scripts under Apache::Registry does that mean that they are not running at full mod_perl speed?

Replies are listed 'Best First'.
•Re: Re: what does shift do?
by merlyn (Sage) on May 19, 2002 at 21:54 UTC
    Apache::Registry is one of the simplest ways to use mod_perl. It takes a CGI-like script from a CGI-program-like-file, and turns it into a specific subroutine invoked when a particular URL is requested.

    It's running at full mod_perl speed, but you'll find for more flexibility, you'll want to get away from the "persistent CGI" model and more towards "content handler" and "web application" models as you progress in your mod_perl knowledge.

    -- Randal L. Schwartz, Perl hacker