You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For reload, I think the UA needs to set the correct headers to signal to HTTP proxies that the request should not be served from cache. Gecko does the following in this case:
It sets the Pragma: no-cache request header.
If the protocol is HTTP >= 1.1, it also sets the Cache-Control: no-cache request header.
I think this needs to be spec'ed, since otherwise an HTTP cache along the way will break the contract of the fetch API.