HTTP caching for https://cachecheck.net/examples/expires-and-max-age

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: max-age=3600

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: max-age=3600
expires: Fri, 17 May 2024 12:56:28 GMT
🧭

Cache-Control

Cache-Control: max-age=3600
  • 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, 11:56:28 AM, it will become stale on May 17, 2024, 12:56:28 PM.

🗑️

Expires

⚠️ The Expires header is redundant with the max-age directive in the Cache-Control header, so the Expires header will be ignored.

The Expires header indicates the time at which the response will expire.

Expires: Fri, 17 May 2024 12:56:28 GMT

In this case, the response will expire on May 17, 2024, 12:56:28 PM (in about 1 hour).