| Persistent HTTP | Non-Persi stent HTTP |
|---|---|
| The server leaves the connection open after sending a response. | Requires 2 RTTs per object. |
| Subsequent HTTP messages between the same client/server are sent over an open connection. | OS overhead for each TCP connection |
| The client sends requests as soon as it encounters a referenced object. | Browsers often open parallel TCP connections to fetch referenced objects. |
| As little as one RTT for all the referenced objects. | Here, at most one object can be sent over one TCP Connection. |