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=30JSONプレビュー
{
"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
}