in reply to Re: Queuing Input for Serial Processing
in thread Queuing Input for Serial Processing

Hiya,

The primary reason is that three or four concurrent requests would be enough to get the computer thrashing virtual memory. The computations being run takes about 700 MB of RAM and about 60 seconds CPU time. The computer can handle maybe two at once. With more than that, they all slow down dramatically.

  • Comment on Re: Re: Queuing Input for Serial Processing

Replies are listed 'Best First'.
Re: Re: Re: Queuing Input for Serial Processing
by LameNerd (Hermit) on Aug 25, 2003 at 17:49 UTC
    Well if you where to develop your software in such a way that it processed requests in parallel but also limited the number of requests that could be processed at the same time, then the number of request that could be processed would be stored in a site specific configuration variable. On your current hardware you would set this parameter to 1 and if you where ever to get a better box you would only have to change this parameter instead of rewriting your code.