On Mon, 15 Jan 2007 10:29:01 +0800 (GMT+08:00)
Jeff Pang <[EMAIL PROTECTED]> wrote:
>
> >>
> >> I mean anything relative to the performance.is the begin block
> >> called everytime orjust the first time and is it safe to define a
> >> function in a file and call it with this method rather than a
>>
>> I mean anything relative to the performance.is the begin block called
>> everytime orjust the first time and is it safe to define a function in
>> a file and call it with this method rather than a package ,
>
>The begin blocks are only run at compile time, so won't affect the
>performance
On Mon, 2007-01-15 at 00:49 +0530, abhishek jain wrote:
> Hi friends,
> i need to know that if i add the following block then will it affect
> anything in the execution of modperl apart from first time run.
> BEGIN{
> require'abc.pl';
> require'large_file.pl';
>
> };
>
> I mean anything relative
Hi friends,
i need to know that if i add the following block then will it affect
anything in the execution of modperl apart from first time run.
BEGIN{
require'abc.pl';
require'large_file.pl';
};
I mean anything relative to the performance.is the begin block called
everytime orjust the first ti