🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Web Development Intermediate

What is Caching?

Storing copies of frequently accessed data in faster storage to reduce load times and server processing.

Caching stores computed results or fetched data for quick reuse. Types include browser cache (assets), CDN cache (edge content), application cache (computed data in Redis/Memcached), and database cache (query results).

Cache headers (Cache-Control, ETag, Last-Modified) control browser caching. Cache invalidation — knowing when to update cached data — is famously one of the hardest problems in computer science.

Related Terms

API (Application Programming Interface)
A set of rules and protocols that allows different software applications to communicate and exchange data.
Web Accessibility (a11y)
The practice of designing websites that can be used by people with disabilities, following WCAG guidelines.
SSR (Server-Side Rendering)
A technique where web pages are rendered on the server and sent as complete HTML to the browser, improving SEO and initial load time.
HTTP/2
The second major version of HTTP that improves performance through multiplexing, header compression, and server push.
Web Font Optimization
Techniques for loading custom fonts efficiently to minimize their impact on page load performance and visual stability.
gRPC
A high-performance RPC framework using Protocol Buffers and HTTP/2 for efficient service-to-service communication.
View All Web Development Terms →