Re: cgi.pm cgi.lib

2001-05-17 Thread Simon Oliver
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

RE: cgi.pm cgi.lib

2001-05-16 Thread Walter Torres
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

Re: cgi.pm cgi.lib

2001-05-16 Thread Ron Grabowski
> 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

RE: cgi.pm cgi.lib

2001-05-16 Thread Purcell, Scott
:[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..

Re: cgi.pm cgi.lib

2001-05-16 Thread Simon Oliver
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

cgi.pm cgi.lib

2001-05-16 Thread Purcell, Scott
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