Compare Revisions

Connection management in HTTP/1.x

Change Revisions

Revision 1107993:

Revision 1107993 by fscholz on

Revision 1108215:

Revision 1108215 by DarrenLester on

Title:
Connection management in HTTP/1.x
Connection management in HTTP/1.x
Slug:
Web/HTTP/Connection_management_in_HTTP_1.x
Web/HTTP/Connection_management_in_HTTP_1.x
Tags:
"Guide" "HTTP" "Performance" "WebMechanics" "Performance"
"Guide" "HTTP" "Performance" "WebMechanics" "Performance"
Comment:
Grammar fixes
Content:

Revision 1107993
Revision 1108215
n11      Connection management is akey topic of HTTP: opening and n11      Connection management is a key topic of HTTP: opening 
>maintaining connections largely impacts the performance of Web si>and maintaining connections largely impacts the performance of We
>tes or Web applications. In HTTP/1.x, there are several models: <>b sites or Web applications. In HTTP/1.x, there are several model
>em>short-lived connections</em>, <em>persistent connections</em>,>s: <em>short-lived connections</em>, <em>persistent connections</
> and <em>HTTP pipelining.</em>>em>, and <em>HTTP pipelining.</em>
n14      Most of the times, HTTP relies on TCP as the transport protn14      Most of the time, HTTP relies on TCP as the transport proto
>ocol. TCP provides a connection between the client and the server>col. TCP provides a connection between the client and the server.
>. In its infancy, HTTP provided a single model to handle these co> In its infancy, HTTP provided a single model to handle these con
>nnections. Connections were short-lived: a new one was created ea>nections. Connections were short-lived: a new one was created eac
>ch time a request needed to be sent, and closed once the answer h>h time a request needed to be sent, and closed once the answer ha
>ad been received.>d been received.
t97      These days, very HTTP/1.1-compliant proxy and server shouldt97      These days, every HTTP/1.1-compliant proxy and server shoul
> support pipelining, but in practice, a lot of them have limitati>d support pipelining, but in practice, a lot of them have limitat
>ons: that is one reason that no modern browser activates this fea>ions: that is one reason that no modern browser activates this fe
>ture by default.>ature by default.

Back to History