HTTP caching for https://cachecheck.net/examples/stale-while-revalidate

Overview

This resource can be cached.

This response can be cached because of a directive in the Cache-Control header.

This resource has a cache control header.

Cache-Control: no-transform, max-age=3600, s-maxage=7200, stale-while-revalidate=36000

This resource does not have an entity tag.

HTTP response cache headers

These are the raw caching-related HTTP headers that were returned by the server:
cache-control: no-transform, max-age=3600, s-maxage=7200, stale-while-revalidate=36000
🧭

Cache-Control

Cache-Control: no-transform, max-age=3600, s-maxage=7200, stale-while-revalidate=36000
  • Max Age

    The max-age directive indicates the response should be considered stale after 3600 seconds (1 hour).

    For example, since this response was fetched on May 17, 2024, 10:15:25 AM, it will become stale on May 17, 2024, 11:15:25 AM.

  • Shared Max Age

    The s-maxage directive indicates the response should be considered stale by shared caches (such as a CDN) after 7200 seconds (2 hours).

    For example, since this response was fetched on May 17, 2024, 10:15:25 AM, it will become stale for shared caches on May 17, 2024, 12:15:25 PM.

  • No Transform
    The no-transform directive indicates that any intermediate cache must not transform this response (for example: change content type, compress data, filter responses, etc.)
  • 🔁
    Stale While Revalidate
    The stale-while-revalidate directive indicates that after a response becomes stale, the cache may continue to serve it for up to 36000 seconds (10 hours) while it is revalidated in the background.