On Tue, May 19, 2009 at 9:36 AM, Tomasz Chmielewski <man...@wpkg.org> wrote:

> Is it normal that when calling i.e. http://server/cgi-bin/script.cgimultiple 
> times, concurrently, from one client, each another request will
> only be served only when the previous script executed to an end?
>

No that's nor mal, it sounds more like you're hitting browser concurrency
limits or pipelined/keepalive requests. Browsers have built-in limits on how
many sockets they will open to a single server, and they also try to use
keepalive connections as much as possible (which means request 2 will be
serialised after request 1).

Try creating a DNS alias for the server and accessing the same CGI via two
different server names.

-- 
Colm

Reply via email to