๐ŸŽ New User? Get 20% off your first purchase with code NEWUSER20 ยท โšก Instant download ยท ๐Ÿ”’ Secure checkout Register Now โ†’
Menu

Categories

Web Development Intermediate

What is HTTP/2?

The second major version of HTTP that improves performance through multiplexing, header compression, and server push.

HTTP/2, standardized in 2015, addresses performance limitations of HTTP/1.1. Key features include multiplexing (multiple requests/responses over a single TCP connection without head-of-line blocking), HPACK header compression (reducing redundant header data), server push (proactively sending resources before the client requests them), stream prioritization, and binary framing (more efficient than text-based HTTP/1.1). HTTP/2 dramatically reduces page load times by eliminating the need for performance workarounds like domain sharding, CSS sprites, and inline resources. Most web servers (Nginx, Apache) and CDNs support HTTP/2 with TLS.

Related Terms

Progressive Enhancement
A web design strategy that starts with basic functionality for all browsers and progressively adds advanced features for capable ones.
Structured Data (Schema.org)
A standardized vocabulary for marking up web content so search engines can understand and display it as rich results.
Web Font Optimization
Techniques for loading custom fonts efficiently to minimize their impact on page load performance and visual stability.
REST (Representational State Transfer)
An architectural style for designing networked applications using standard HTTP methods and stateless communication.
Server-Sent Events (SSE)
A web technology enabling servers to push real-time updates to browsers over a single HTTP connection, simpler than WebSockets.
GraphQL
A query language for APIs that lets clients request exactly the data they need, reducing over-fetching and under-fetching.
View All Web Development Terms โ†’