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: private, s-maxage=0, max-age=0, must-revalidate
This resource does not have an entity tag.
age: 3674 cache-control: private, s-maxage=0, max-age=0, must-revalidate last-modified: Wed, 11 Sep 2024 00:04:06 GMT vary: Accept-Encoding,Cookie,Authorization
Cache-Control: private, s-maxage=0, max-age=0, must-revalidate
private
directive indicates that the response is intended only for a single user and must not be stored in any shared cache. Typically, this means that the response will only be stored in the browser cache.The max-age
directive indicates the response should be considered stale immediately.
For example, since this response was fetched on Sep 11, 2024, 1:05:21 AM, it will become stale on Sep 11, 2024, 1:05:21 AM.
The s-maxage
directive indicates the response should be considered stale by shared caches (such as a CDN) immediately.
For example, since this response was fetched on Sep 11, 2024, 1:05:21 AM, it will become stale for shared caches on Sep 11, 2024, 1:05:21 AM.
must-revalidate
directive indicates that when the response becomes stale, the cache must revalidate the cached response before it can be used again.The Age
header indicates how long the response has been in the cache.
Age: 3674
In this case, the response has been in the cache for 3674 seconds (1 hour 1 minute 14 seconds).
The Last-Modified
header indicates the last time the resource was modified on the origin server.
Last-Modified: Wed, 11 Sep 2024 00:04:06 GMT
In this case, the resource was last modified on Sep 11, 2024, 12:04:06 AM (about 1 hour ago).
The Vary
header indicates which request headers the server response may be dependent on. If any of the listed headers change, then the response may be different. This allows the server to send the correct cached response for each request. For example, ensuring that a client that does not support compression does not receive a cached compressed response.
Vary: Accept-Encoding,Cookie,Authorization
Accept-Encoding: The server response is expected to be different depending on the encodings that the client accepts via the Accept-Encoding
header in the request. For example, if the client does not support compression, then the server may send a cached uncompressed response. If the client does support compression, for example, by sending a a Accept-Encoding: gzip
header, then the server may send a cached compressed response.
Cookie: The server response will depend on the cookies that the client sends in the request. Typically, this means that the server will cache authenticated responses (since authenticated responses typically include a cookie), but the cached pages will only be served to the same client that sent the request.