Cache
Temporary storage of data you need often so you don't have to fetch the original every time.
Layers: browser cache (images, CSS), CDN cache (at the edge), application cache (Redis, Memcached), database cache, CPU cache.
"There are only two hard things in Computer Science: cache invalidation and naming things." — Phil Karlton. Adding caching is easy; getting invalidation right is where the bugs live.