11 KiB
| title | chunk | source | category | tags | date_saved | instance |
|---|---|---|---|---|---|---|
| HTTP/2 - Glossary | MDN | 1/3 | https://developer.mozilla.org/en-US/docs/Glossary/HTTP_2 | reference | web, html, css, javascript, documentation | 2026-05-05T05:33:38.746768+00:00 | kb-cron |
MDN HTML HTML: Markup language
HTML reference
HTML guides
Markup languages
CSS reference
CSS guides
Layout cookbook
JavaScriptJS JavaScript: Scripting language
JS reference
JS guides
Web APIs Web APIs: Programming interfaces
Web API reference
Web API guides
- Using the Web animation API
- Using the Fetch API
- Working with the History API
- Using the Web speech API
- Using web workers
Technologies
Topics
Learn Learn web development
Frontend developer course
- Getting started modules
- Core modules
- MDN Curriculum
- Check out the video course from Scrimba, our partner
Learn HTML
Learn CSS
Learn JavaScript
Tools Discover our tools
About Get to know MDN better
HTTP/2
HTTP/2 is a major revision of the HTTP network protocol.
The primary goals for HTTP/2 are to reduce latency and head-of-line blocking, by enabling full request and response multiplexing and support for request prioritization, and to minimize protocol overhead via efficient compression of HTTP header fields (HPACK).
HTTP/2 also introduced a mechanism called Server Push, which allowed a server to send resources to a client in anticipation that the client would need them very soon. Server Push proved tricky to implement in practice, and has been removed from most major browser engines. It has been replaced by alternative methods such as rel="preload" and 103 Early hints.
HTTP/2 does not modify the semantics of HTTP, meaning the core concepts found in HTTP/1.1, such as methods, status codes, URIs, and header fields, remain the same. Instead, HTTP/2 modifies how the data is formatted (framed) and transported between the client and server, both of which manage the entire process, and hides protocol complexity within a framing layer. As a result, all existing applications can be delivered over the protocol without modification.
In this article
See also
- HTTP on MDN
- Related glossary terms:
- RFC 7540, section 8.2: Server Push
- HTTP/2 on Wikipedia