Glossary

HTTP/3 and QUIC

HTTP/3 is the third major version of HTTP, using QUIC (over UDP) instead of TCP. It solves the fundamental HTTP/2 problem: head-of-line blocking at the transport layer. Supported by most browsers and CDNs.

Why QUIC instead of TCP

HTTP/2 multiplexes requests over a single TCP connection. But TCP guarantees order: losing one packet blocks all subsequent ones. QUIC — over UDP — isolates streams: a lost packet blocks only one stream; the rest continue.

HTTP/3 benefits

Support

Cloudflare, Google, Facebook, Chrome, Firefox — all support HTTP/3. Nginx requires quiche or a custom build. For most applications — transparent through a CDN.