← Back to overview

Dynamic — No Cache

Explicitly opts out of all caching with no-store. Every single request triggers a fresh server render. The timestamp will change on every reload.

StrategyDynamic
Rendered at

2026-03-24T17:44:20.297Z

If this timestamp stays the same across reloads, the page is being served from cache.

Expected Response Headers

Cache-Control: no-store
Netlify-CDN-Cache-Control: no-store
Cache-Status: "Netlify Edge"; miss (always)

How it works

  • Route rule sets both Cache-Control: no-store and Netlify-CDN-Cache-Control: no-store
  • Every request bypasses all caches — CDN, server, and browser
  • The page is server-rendered fresh on every request
  • Timestamp changes on every reload, proving no caching

Use cases

  • User-specific pages (account settings, cart, checkout)
  • Pages with real-time data that must never be stale
  • Content behind authentication