Re: cgi-object not cacheable

2001-11-14 Thread Peter Pilsl
On Tue, Nov 13, 2001 at 09:18:04PM -0500, Perrin Harkins wrote: One run of my script takes about 2 seconds. This includes a lot of database-queries, calculations and so on. about 0.3 seconds are used just for one command: $query=new CGI; That's really awfully slow. Are you positive

RE: Re: cgi-object not cacheable

2001-11-14 Thread
Check out the docs at: http://stein.cshl.org/WWW/software/CGI/#mod_perl There's specific notes on how to make CGI.pm play nicely with mod_perl. -- === If you put three drops of poison into a 100 percent pure Java, you

Re: cgi-object not cacheable

2001-11-14 Thread Peter Pilsl
On Wed, Nov 14, 2001 at 10:39:36AM -0500, Perrin Harkins wrote: its definitely running under mod_perl. But imho the time it takes to create a new cgi-object should not depend too much wheter its running under mod_perl or not, cause the CGI-module is loaded before. (In fact I load in

Re: cgi-object not cacheable

2001-11-14 Thread Perrin Harkins
If it was running under CGI, it would be compiling CGI.pm on each request, which I've seen take .3 seconds. Taking that long just to create the new CGI instance seems unusual. How did you time it? Are you using Apache::DProf? Wouldnt it be compiled at the use-statement ? Yes, but

RE: cgi-object not cacheable

2001-11-14 Thread Andy Sharp
That's usually pretty accurate, so I guess it really takes that long on your system. Try Apache::Request! Or even one of the lighter CGI modules like CGI_Lite. in my case it means up to 4 connections per process, cause in fact it is not one module but 2 (input and output) and each

RE: cgi-object not cacheable

2001-11-14 Thread simran
internal data in $q for the current request. -Original Message- From: Peter Pilsl [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 14 November 2001 9:19 AM To: [EMAIL PROTECTED] Subject: cgi-object not cacheable One run of my script takes about 2 seconds. This includes a lot of database-queries

cgi-object not cacheable

2001-11-13 Thread Peter Pilsl
One run of my script takes about 2 seconds. This includes a lot of database-queries, calculations and so on. about 0.3 seconds are used just for one command: $query=new CGI; I tried to cache the retrieved object between several requests by storing to a persistent variable to avoid this long

Re: cgi-object not cacheable

2001-11-13 Thread Perrin Harkins
One run of my script takes about 2 seconds. This includes a lot of database-queries, calculations and so on. about 0.3 seconds are used just for one command: $query=new CGI; That's really awfully slow. Are you positive it's running under mod_perl? Have you considered using Apache::Request