Visualizers
Learn by moving things
Interactive explainers for the ideas behind retrieval, embeddings, and agents. A formula tells you what is true; dragging a vector shows you why. Each one also appears inside the article it belongs to, and runs entirely in your browser, so drag, poke, and break it.

Push CDN: pre-stock the edges
From: CDNs: The Cache Nearest Your Users →A push CDN uploads content to every edge at deploy time, before anyone asks. Even the first request in a region is a hit, because you paid the cost up front. Good for high-traffic, stable assets.
At deploy time you upload the file to every edge, before anyone asks for it.
The CDN cache key
From: CDNs: The Cache Nearest Your Users →The cache key decides what counts as the same request. By default it is the whole URL, so ?utm=fb and ?utm=tw become separate copies and wreck the hit rate. Normalize the key to ignore marketing params.
By default the key is the whole URL, so ?utm=fb and ?utm=tw look like different files. Three near-identical requests, three separate copies, a wrecked hit rate.
Origin shield
From: CDNs: The Cache Nearest Your Users →When a popular file expires everywhere at once, every edge would hit the origin together. An origin shield is one mid-tier node all edges fetch through, so the origin sees a single request. The thundering herd at CDN scale.
Without a shield, when a popular file expires everywhere at once, every edge fetches it from the origin at the same moment. Five edges, five simultaneous origin hits.