logo
GeekFormat

Cache-Control Parser

Cache-Control 분석기

캐싱 정책, 캐시 가능 범위, 신선도 TTL을 분석합니다. 빌더를 통해 재현 가능한 헤더도 생성할 수 있습니다.

분석 요약

Shared caches allowed신선도: 10m 0sstale-while-revalidate: 30s
캐시 가능성
Shared caches allowed
신선도 TTL
10m 0s
Stale-While-Revalidate
30s
Stale-If-Error
-

빌더

public, max-age=600, stale-while-revalidate=30

JSON 미리보기

{
  "directives": [
    {
      "key": "public",
      "value": null
    },
    {
      "key": "max-age",
      "value": "600"
    },
    {
      "key": "stale-while-revalidate",
      "value": "30"
    }
  ],
  "warnings": [],
  "cacheability": "Shared caches allowed",
  "freshnessSeconds": 600,
  "staleWhileRevalidateSeconds": 30,
  "staleIfErrorSeconds": null
}