Cloudflare Docs
Cache
Edit this page on GitHub
Set theme to dark (⇧+D)

Glossary

Review the definitions for terms used across Cloudflare’s Cache documentation.

TermDefinition
cacheA temporary storage area where frequently accessed data is stored for quick retrieval.
cache hitWhen a requested piece of content is found in the cache, reducing the need to fetch it from the origin server.
cache lockCache lock (or mutex) is a mechanism employed by CDN data centers, comprising numerous servers, to prevent the overloading of origin servers. This mechanism ensures that only one server can request a specific file from the origin at any given time, facilitating efficient coordination among the servers.
cache missWhen a requested piece of content is not found in the cache, requiring the server to fetch it from the origin server.
cached bandwidth (cached egress bandwidth)The amount of bandwidth served from Cloudflare without hitting the origin server. Cached bandwidth is the sum of all EdgeResponseBytes where CacheCacheStatus equals hit, stale, updating, ignored, or revalidated.
cached requestsThe number of requests served from Cloudflare without having to hit the origin server. Cached requests are the sum of all requests where CacheCacheStatus equals hit, stale, updating, ignored. This does not include revalidated since the request had to be sent to the origin server.
cachingThe process of storing copies of files or data in a cache to accelerate future requests.
content delivery network (CDN)A geographically distributed group of servers which work together to provide fast delivery of Internet content.
dynamic contentDynamic content refers to website content that changes based on factors specific to the user such as time of visit, location, and device. News websites or social media are examples of this type of content. For this type of website, content has to be fetched from the origin server every time it is requested.
edge serverA server located at the edge of a network, typically within a CDN, that serves content to end-users.
origin bandwidth (origin egress bandwidth)The amount of data transferred from the origin server to Cloudflare within a certain period of time. Origin bandwidth is the sum of all EdgeResponseBytes where OriginResponseStatus does not equal 0.
origin serverThe original server where the web content is hosted before it is distributed to edge servers in a CDN.
purgeThe process of removing outdated content from the cache to make room for updated content and ensure the delivery of the latest content.
saved bandwidth (saved egress bandwidth)The percentage of bandwidth saved by caching on the Cloudflare network.
Set-CookieSet-Cookie is an HTTP header used by web servers to send a cookie to a user’s browser during an HTTP response, enabling the server to store information on the client side, often used for session management and user preferences.
static contentStatic content, like images, stylesheets, and JavaScript, remains the same for all users. It can be directly served from the cache without fetching from the origin server because it does not change without manual intervention.
time-to-live (TTL)The duration for which a cached copy of a resource is considered valid before it needs to be refreshed or revalidated.
total bandwidth (total egress bandwidth, edge bandwidth)Total bandwidth is the amount of data transferred from Cloudflare to end users within a certain period of time. Total bandwidth equals the sum of all EdgeResponseBytes for a certain period of time.
uncached bandwidth (uncached egress bandwidth)Uncached bandwidth is the amount of bandwidth that is not cached and therefore is served from the origin. Uncached bandwidth is the sum of all EdgeResponseBytes where CacheCacheStatus does not equal hit, stale, updating, ignored, or revalidated.
uncached requestsUncached requests are requests that are not cached and therefore are served from the origin server. Uncached requests are the sum of all requests where CacheCacheStatus does not equal to hit, stale, updating, or ignored.