Cả ba đều cung cấp cùng ngữ nghĩa HTTP (method, header, status code) nhưng khác ở cách chúng chuyển byte trên đường truyền — mỗi phiên bản sửa một điểm nghẽn của phiên bản trước. Chủ đề xuyên suốt là loại bỏ head-of-line (HOL) blocking, khi một request kẹt làm nghẽn các request khác.
HTTP/1.1 over TCP one request at a time per connection
conn ──[req A]──[req B]──[req C]──▶ B waits for A (HOL blocking at HTTP layer)
HTTP/2 over TCP many streams multiplexed on ONE connection
conn ══[A|B|C interleaved]══▶ but a lost TCP packet stalls ALL streams
(HOL blocking moves down to TCP)
HTTP/3 over QUIC (UDP) independent streams, per-stream delivery
conn ══[A][B][C]══▶ a lost packet stalls only its own stream
