js1 has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I have a script running on a webserver using the modules below. The problem is this seems to cause my script to delay before it gets run. Is there anyway to speed this up, eg, is there a way to load the modules just once so that they're ready to be used by my script?
Thanks for any help.
JS.
use CGI qw(:standard escapeHTML); use Net::LDAP; use Net::LDAP::Constant qw( LDAP_REFERRAL LDAP_CONSTRAINT_VIOLATION LD +AP_COMPARE_TRUE); use URI; use URI::ldap; use Date::Manip; use POSIX qw(strftime); use Log::Dispatch; use Log::Dispatch::File; use Log::Dispatch::Email::MailSendmail; use HTML::Entities; use strict; no strict "vars";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: modules slowing webpage
by dragonchild (Archbishop) on May 10, 2004 at 15:03 UTC | |
|
Re: modules slowing webpage
by matija (Priest) on May 10, 2004 at 15:04 UTC | |
|
Re: modules slowing webpage
by eric256 (Parson) on May 10, 2004 at 15:15 UTC | |
by eserte (Deacon) on May 10, 2004 at 16:20 UTC | |
by simonm (Vicar) on May 10, 2004 at 16:02 UTC | |
by eric256 (Parson) on May 10, 2004 at 20:43 UTC | |
by simonm (Vicar) on May 10, 2004 at 22:11 UTC | |
by Anonymous Monk on May 11, 2004 at 10:53 UTC | |
by js1 (Monk) on May 10, 2004 at 15:23 UTC | |
|
Re: modules slowing webpage
by Anonymous Monk on May 10, 2004 at 19:18 UTC |