Re: Speeding up CGIHTTPServer (Tim Roberts)

2005-03-08 Thread Paul Boddie
"Johan Kohler" <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>... > > Fair enough. Pretend my question said "compared to apache, but also to > CGIHTTPServer on linux". The Windows box has modest specs Celeron 2.8GHz, > 256MB, but it takes 30-60s render pages. I was using it to

Re: Speeding up CGIHTTPServer (Tim Roberts)

2005-03-08 Thread elbertlev
Starting a process on WIN98 is VERY slow. (On NT much faster the second time). If you really want to use WIN98, modify CGIHTTPServer.py in such a way, that branch #Other O.S. -- execute script in this process is executed. This way CGIHTTPServer is as fast as it gets. At least not slower then ISA

Re: Speeding up CGIHTTPServer (Tim Roberts)

2005-03-08 Thread Steve Nordby
"Diez B. Roggisch" wrote: > > If there is no way to improve performance, could anyone tell my _why_ it's > > running so slowly? Presumably spawning a process takes some time. The > > code I'm running as CGI is not hectic at all. > > Just an educated guess: Maybe some timeouts or slowly answered

Re: Speeding up CGIHTTPServer (Tim Roberts)

2005-03-08 Thread Thomas Guettler
Am Tue, 08 Mar 2005 13:56:57 +0200 schrieb Johan Kohler: > On Tue, 8 Mar 2005 10:25:46 +0100 (CET), <[EMAIL PROTECTED]> > wrote: > >> I'm using CGIHTTPServer (via its test() method) to test some CGI on my >> Windoze 98 box. I find that the execution is very slow. Is there >> anything I can d

Re: Speeding up CGIHTTPServer (Tim Roberts)

2005-03-08 Thread Diez B. Roggisch
> If there is no way to improve performance, could anyone tell my _why_ it's > running so slowly? Presumably spawning a process takes some time. The > code I'm running as CGI is not hectic at all. Just an educated guess: Maybe some timeouts or slowly answered requests are the problem - e.g. DNS

Re: Speeding up CGIHTTPServer (Tim Roberts)

2005-03-08 Thread Johan Kohler
On Tue, 8 Mar 2005 10:25:46 +0100 (CET), <[EMAIL PROTECTED]> wrote: I'm using CGIHTTPServer (via its test() method) to test some CGI on my Windoze 98 box. I find that the execution is very slow. Is there anything I can do to make sure I'm getting the best performance out of CGIHTTPServer? Co