Introduction
Description
Description | HTTP/1.1 Page Load | HTTP/2 page Load |
|---|---|
| Which creates six to eight connections | Which creates only single connection. |
| Which request HTML page. | Which request HTML page. |
| Which recive the HTML page. | Which recive the HTML page. |
| Which decodes the HTML Page | Which is also decodes the HTML Page. |
| Which request the six to eight files included in HTML pages without aby priorities and dependencies. | Which request all the files included in the HTML with priorities and dependencies. |
| Every connection wait for the requested file to arrive. | File returned, Multiplexed on single connection, as ready |
| Request foir the next file the now establish the connection. | ----- |
| Which repeatds up to the last file. | ----- |
| Close six connections. | Close single connection. |
Points