Launching Microsoft Edge on Windows 11
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I’m testing website updates and noticed that Microsoft Edge sometimes continues displaying older content even after deployment.
Example page for testing: -link removed-
Actions already completed:
Is there any Edge-specific caching, preload behavior, or Microsoft diagnostic tool that could help identify where the cached version is coming from?
Thanks in advance for your help.
Launching Microsoft Edge on Windows 11
Answer accepted by question author
AI answer
Yes. Beyond normal HTTP caching, several Microsoft Edge behaviors can make content appear “stale” even after clearing cache and using InPrivate.
Key Edge-related mechanisms and behaviors:
Cache-Control, Expires, ETag, etc.).<link rel=prefetch> and <link rel=prerender> no longer bypass cache semantics. Prefetched resources now obey normal HTTP cache rules, so if the server allows caching, a prefetched response can still be reused later.Cache-Control: max-age=... or missing no-store/no-cache where appropriate), Edge may legitimately reuse an older response even after a new deployment, until the cache lifetime expires.How to investigate where the cached version is coming from in Edge
Ctrl+Shift+I) to open DevTools.(from disk cache) or (from memory cache).Cache-Control, Expires, and ETag headers returned by the server/CDN.Cache-Control: no-store or Cache-Control: no-cache, must-revalidate for the main HTML if instant updates are required.max-age values, so that only the HTML needs to be non-cacheable.<head> for <link rel=prefetch> or <link rel=prerender> entries.Summary
Edge does not have a hidden, Edge-only content cache beyond standard HTTP caching and speculative prefetch/prerender behavior. The most effective way to pinpoint the source of stale content is to:
Cache-Control/Expires policies and any prefetch/prerender usage accordingly.References:
Thank you for explaining my question in such detail.
Best regards,