First off, are your .pl / .cgi scripts associated with perl.exe or
PerlIIS.dll? You should find that the latter is faster at loading and
required less memory.
Secondly, CGI.pm is only about 200kb in size - so compared to all your
other scripts (8MB said you) that's not causing the problem.
D
age-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of
> Purcell, Scott
> Sent: Wednesday, May 16, 2001 9:00 AM
> To: '[EMAIL PROTECTED]'
> Subject: cgi.pm cgi.lib
>
>
> Hello,
> I have build a large asset management system over the past
> tw
> I have build a large asset management system over the past two years and I
> am re-working a lot of the old code and trying to improve my speed issues as
> the amount of users increases.
I think Jenda wrote a CGI::Lite that does what you want. There is also a
CGI3.pm which is the same code as C
:[EMAIL PROTECTED]]
Sent: Wednesday, May 16, 2001 9:44 AM
To: Purcell, Scott
Cc: '[EMAIL PROTECTED]'
Subject: Re: cgi.pm cgi.lib
Attached is what I calss as the bare minimum for CGI scripting - but it
only copes with simple GETs and PUTs - no multipart forms please!
Use like this..
Attached is what I calss as the bare minimum for CGI scripting - but it
only copes with simple GETs and PUTs - no multipart forms please!
Use like this..
my $form = get_params();
print $form->{name};
And here are the subs - you could bung 'em in a package and preload it
if your using Apache
Hello,
I have build a large asset management system over the past two years and I
am re-working a lot of the old code and trying to improve my speed issues as
the amount of users increases.
When I began two years ago, I built the foundation on CGI.pm. I found it
easy to grab the params, etc and d