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 func

Re: Multiple .cgi scripts vs. one large script

2006-06-15 Thread Ovid
low up questions to the list. Web 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 Mo

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, t

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 > hand

Re: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Sean Davis
beginners-cgi@perl.org Subject: Multiple .cgi scripts vs. one large script 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

RE: Multiple .cgi scripts vs. one large script

2006-06-14 Thread Moore, George T.
rg Subject: Multiple .cgi scripts vs. one large script 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 funct

Multiple .cgi scripts vs. one large script

2006-06-14 Thread Hardly Armchair
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 functions using subroutines. Or perhaps these situations