Skip to content

Glossary

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

Term Definition
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 requests

the 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.

dynamic content

dynamic 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.

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.

saved bandwidth (saved egress bandwidth)

the percentage of bandwidth saved by caching on the Cloudflare network.

static content

static 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.

uncached requests

uncached 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.

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.

cache

a temporary storage area where frequently accessed data is stored for quick retrieval.

caching

the process of storing copies of files or data in a cache to accelerate future requests.

edge server

a server located at the edge of a network, typically within a CDN, that serves content to end-users.

origin server

the original server where the web content is hosted before it is distributed to edge servers in a CDN.

cache hit

when a requested piece of content is found in the cache, reducing the need to fetch it from the origin server.

cache miss

when a requested piece of content is not found in the cache, requiring the server to fetch it from the origin server.

purge

the process of removing outdated content from the cache to make room for updated content and ensure the delivery of the latest content.

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.

cache lock

cache 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.

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.

View more terms