HTTP caching for https://github.com

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=0, private, must-revalidate

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=0, private, must-revalidate
vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Language, Accept-Encoding, Accept, X-Requested-With
🧭

Cache-Control

Cache-Control: max-age=0, private, must-revalidate
  • 🔒
    Private
    The 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.
  • Max Age

    The max-age directive indicates the response should be considered stale immediately.

    For example, since this response was fetched on May 17, 2024, 12:13:19 PM, it will become stale on May 17, 2024, 12:13:19 PM.

  • Must Revalidate
    The must-revalidate directive indicates that when the response becomes stale, the cache must revalidate the cached response before it can be used again.
🔀

Vary

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: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, Accept-Language, Accept-Encoding, Accept, X-Requested-With

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.

Accept-Language: The server response will depend on the language that the client accepts via the Accept-Language header in the request. If the client does not support the language of the cached response, then the server may send a different cached response. However, if the server has a cached response that matches the client's language, then the server may send the cached response. For example, if the client sends Accept-Language: en, then the server may send a cached response in English. If the client sends Accept-Language: fr, then the server may send a cached response in French.