RE: Browser support for request pipelining

Patrik Winroth,
> <snip/>

Thanks, but as far as I can see you're talking about what
RFC 2616 call persistent connections.

Request pipelining presupposes a persistent connection, but
adds the following: subsequent requests are be sent before the
corresponding responses are received, ie. instead of,

  Request1
           Response1
  Request2
           Response2
  Request3
           Response3

we could have,

  Request1
  Request2
  Request3
           Response1
           Response2
           Response3

(although, clearly, if there are many requests we might expect 
the request stream to partially overlap the response stream).

So, does anyone have any info on browser support for pipelining?

Cheers,


Miles

-- 
Miles Sabin                       Cromwell Media
Internet Systems Architect        5/6 Glenthorne Mews
+44 (0)20 8817 4030               London, W6 0LJ, England
msabin@cromwellmedia.com          http://www.cromwellmedia.com/


 

Received on Friday, 21 January 2000 04:00:25 UTC