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: Tue, 07 Jul 2026 08:27:06 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 Jul 7, 2026, 7:27:06 AM, it will become stale on Jul 7, 2026, 8:27:06 AM.

🗑️

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: Tue, 07 Jul 2026 08:27:06 GMT

In this case, the response will expire on Jul 7, 2026, 8:27:06 AM (in about 1 hour).