Re: Multiple .cgi scripts vs. one large script

2006-06-15 Thread Ovid
Programming with Perl -- http://users.easystreet.com/ovid/cgi_course/ - Original Message From: Adam Waite [EMAIL PROTECTED] To: beginners-cgi@perl.org Sent: Thursday, June 15, 2006 4:43:56 AM Subject: Re: Multiple .cgi scripts vs. one large script Moore, George T. wrote: It depends on how you

Re: Multiple .cgi scripts vs. one large script

2006-06-15 Thread Bill Stephenson
On Jun 14, 2006, at 6:40 PM, Hardly Armchair wrote: Hello All, I was wondering if it is more efficient (in terms of speed and processor load) to have two different scripts of approximately the same size called to handle two different functions, or to have one large script handle all cgi

RE: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Moore, George T.
It depends on how you are using your scripts. The most expensive aspect of the files is the IO used to read them from the hard drive they reside on. If you are calling on the scripts multiple times and they have to be read each time, rather than being cached in memory, then you only want to read

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Sean Davis
Moore, George T. wrote: It depends on how you are using your scripts. The most expensive aspect of the files is the IO used to read them from the hard drive they reside on. If you are calling on the scripts multiple times and they have to be read each time, rather than being cached in memory,

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Mr. Shawn H. Corey
On Wed, 2006-14-06 at 16:40 -0700, Hardly Armchair wrote: Hello All, I was wondering if it is more efficient (in terms of speed and processor load) to have two different scripts of approximately the same size called to handle two different functions, or to have one large script handle

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Adam Waite
Moore, George T. wrote: It depends on how you are using your scripts. The most expensive aspect of the files is the IO used to read them from the hard drive they reside on. If you are calling on the scripts multiple times and they have to be read each time, rather than being cached in memory,