in reply to Re: Getting mod_perl to actually 'activate'..
in thread Getting mod_perl to actually 'activate'..
Still takes a long time to run every instance that the code is called from an http request? Wouldn't all those subroutines just get loaded into memory once, drastically shortening the runtime?#!/usr/bin/perl sub name_of_sub_1{ return 1; } sub name_of_sub_2{ return 1; } ... sub name_of_sub_100{ return 1; } ##actual code here exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Getting mod_perl to actually 'activate'..
by perrin (Chancellor) on Feb 16, 2009 at 17:32 UTC | |
by MashMashy (Sexton) on Feb 16, 2009 at 17:37 UTC | |
by zwon (Abbot) on Feb 16, 2009 at 17:53 UTC | |
by MashMashy (Sexton) on Feb 16, 2009 at 17:57 UTC | |
by perrin (Chancellor) on Feb 16, 2009 at 18:40 UTC | |
by zwon (Abbot) on Feb 16, 2009 at 18:11 UTC | |
by MashMashy (Sexton) on Feb 16, 2009 at 17:49 UTC | |
by perrin (Chancellor) on Feb 16, 2009 at 18:41 UTC |