🎁 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

GraphQL
A query language for APIs that lets clients request exactly the data they need, reducing over-fetching and under-fetching.
Progressive Web App (PWA)
A web application that uses modern web capabilities to deliver app-like experiences with offline support and push notifications.
JSON
JavaScript Object Notation — a lightweight data interchange format that is easy for humans to read and machines to parse.
SPA (Single Page Application)
A web application that loads a single HTML page and dynamically updates content without full page reloads.
CDN (Content Delivery Network)
A distributed network of servers that delivers web content to users from the geographically closest location.
Web Caching Strategies
Techniques for storing copies of web resources at various levels to reduce server load, bandwidth, and response times.
View All Web Development Terms →