Skip to main content

Cache

Systems

A fast storage layer that holds frequently used data.

A cache stores copies of data so future requests can be served faster than recomputing or refetching them. Caches appear at many levels β€” CPU caches, browser caches, CDNs, and application caches like Redis. The key challenge is invalidation: knowing when cached data is stale.

← Back to full glossary