Re: Is it Possible: Caching Perl Compilations

2003-11-10 Thread Rob Dixon
Dan Anderson wrote: > > Is it possible to cache Perl compilations on a web server so that it > runs faster? Hi Dan. It depends why you're compiling at run time. Something like my $sub = eval 'sub { 9 + 9 }'; print $sub->(), "\n"; will stay compiled as long as you have $sub as a reference.

Re: Is it Possible: Caching Perl Compilations

2003-11-09 Thread Jeff 'japhy' Pinyan
On Nov 9, Dan Anderson said: >Is it possible to cache Perl compilations on a web server so that it >runs faster? Yes, it's called mod_perl, and it's a module for the Apache web server. See the Apache web site (http://www.apache.org/). -- Jeff "japhy" Pinyan [EMAIL PROTECTED] http://ww

Is it Possible: Caching Perl Compilations

2003-11-09 Thread Dan Anderson
Is it possible to cache Perl compilations on a web server so that it runs faster? Thanks in advance, -Dan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]