Web Proxy Caching > Ensuring cached object freshness > HTTP object freshness > Cache-Control headers
|
|
The no-cache header, sent by clients, tells the proxy to serve no objects directly from the cache; always obtain the object from the origin server. You can configure the proxy to ignore client no-cache headers (see Configuring the proxy to ignore client no-cache headers).
|
|
The max-age header, sent by servers, is compared to the object age; if the age is less than max-age, the object is fresh and can be served.
|
|
The min-fresh header, sent by clients, is an acceptable freshness tolerance. The client wants the object to be at least this fresh. If a cached object does not remain fresh at least this long in the future, it is revalidated.
|
|
The max-stale header, sent by clients, permits the proxy to serve stale objects provided they are not too old. Some browsers might be willing to take slightly old objects in exchange for improved performance, especially during periods of poor Internet availability.
|
Web Proxy Caching > Ensuring cached object freshness > HTTP object freshness > Cache-Control headers
|