HTTP 1.1 VS HTTP 2
REQUEST MULTIPLEXING
HTTP/2 can send multiple requests for data in parallel over a single TCP connection. This is the most advanced feature of
the HTTP/2 protocol because it allows
you to download web files asynchronously from one server. Most modern
browsers limit TCP connections to one server. This reduces the additional round
trip time (RTT), making your website load
faster.
HEADER COMPRESSION
HTTP/2
compresses a large number of redundant header frames. It uses the HPACK
specification as a simple and secure approach to header compression. Both
client and server maintain a list of headers used in previous client-server
requests.



Comments
Post a Comment