Jump to content

Talk:HTTP pipelining

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Lance.cse (talk | contribs) at 12:40, 2 February 2009. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconComputing Unassessed
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
???This article has not yet received a rating on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.

Safari and popelining?

Hi, all modern browsers are listed. But what is with Safari? -- cu AssetBurned (talk) 15:16, 22 May 2008 (UTC)[reply]

HTTP Server support

I understand that all HTTP/1.1 servers have to be able to accept pipelined requests, but are there any servers which fully support pipelining, and send pipelined responses? Apache maybe? -- Lee Carré 19:27, 22 November 2006 (UTC)[reply]

Methinks you might be confused. What's a pipelined response? A response that you send before you receive the request?--Jec 20:51, 23 November 2006 (UTC)[reply]
An HTTP Response. A pipelined response would be a response that's pipelined; sent in the same manor as pipelined HTTP requests. This is from the server's point of view, not the client's, the only response a client sends is a TCP ACK. -- Lee Carré 06:23, 24 November 2006 (UTC)[reply]
A pipelined HTTP request is a request that has been sent before the reply for the previous request has been received. Think about it -- there's no such thing as a pipelined reply.
What you are thinking of is sending multiple replies in a single IP packet. Most servers will do that either if they use a buffer for replies (as Apache does), or if they enable Nagle's algorithm (most do). --Jec 01:23, 2 July 2007 (UTC)[reply]

Where is this actually defined?

A quick search of RFC 2068 for pipeline finds no hits. Plugwash 01:44, 7 October 2007 (UTC)[reply]

sorry my mistake the copy of the RFC I was looking at was split into sections causing my search to not find stuff that was in fact in the RFC. Plugwash —Preceding signed but undated comment was added at 01:47, 7 October 2007 (UTC)[reply]

Konqueror support can be "enabled"?

Is it just me, or saying that Konqueror supports it but needs to be "enabled" is like saying that firefox supports tor and just needs to be enabled? The "trick" listed in the page ([1]) makes you use an external software (a proxy) that implements pipelining... —Preceding unsigned comment added by Flameeyes (talkcontribs) 16:36, 27 February 2008 (UTC)[reply]

I agree. That pipeline "support" involves using a 3rd party web proxy (Polipo), clearly that's not the same thing as the browser actually having in-built support for pipelining. I'd edit it myself but I don't have any references to whether Konqueror actually supports pipelining or not. Maybe if someone actually has a reference they can do the edit.. PUnkX22 (talk) 17:10, 24 July 2008 (UTC)[reply]


Is there any way to know whether a particular server supports pipelining beforehand