-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use of Cache-Control
: no-store
, no-cache
, max-age=0
should be flagged by Site Health for unauthenticated frontend responses
#1692
Comments
This may end up being important for Speculative Loading as well (h/t @yoavweiss):
|
That's an interesting insight, +1. Also, if a WP Site uses Speculation Rules Prefetch or Prerender having BFCache working is particularly important in case of following back/forward navigations. Speculation Rules is an API that works really well in combination with BFCache (not being blocked) and/or Cross Document View Transition. |
This may make sense to propose as part of the core merge for Speculative Loading since it if the See Core-62503 and WordPress/wordpress-develop#7860. cc @felixarntz |
Cache-Control: no-store
should be flagged by Site Health for unauthenticated frontend responsesCache-Control
: no-store
, no-cache
, max-age=0
should be flagged by Site Health for unauthenticated frontend responses
|
I've filed this as #1709. |
Browsers have typically prevented a page from being served from bfcache when is served with
Cache-Control: no-store
. For example, in Core-21938 this was done to prevent a cached page from being accessed after a user logs out of WordPress. However, there are many sites that serveCache-Control: no-store
even to unauthenticated requests. This is the number one reason for why bfcache is disabled in WP sites, as is seen at GoogleChromeLabs/wpp-research#75.Chrome is currently experimenting with enabling bfcache when pages are served with
Cache-Control: no-store
, but there are scenarios still where such pages remain ineligible.A Site Health test can be added which warns sites when they served unauthenticated responses with
Cache-Control: no-store
as this can make them ineligible for bfcache and thus negatively impact navigation performance.The text was updated successfully, but these errors were encountered: