Hint
HTTP/2 allows multiple requests on one TCP connection simultaneously — eliminates head-of-line blocking and domain sharding hacks
HTTP/1.1 limitation: One request at a time per TCP connection. Browsers open 6–8 parallel connections per domain to work around this, but each connection has overhead (TCP handshake, slow start).
HTTP/2 multiplexing:
Other HTTP/2 features:
HTTP/2 makes these obsolete: domain sharding, CSS sprites, JS concatenation for HTTP performance (code splitting is now safe).