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
Reading Netflify docs (https://docs.netlify.com/platform/caching/) and looking at the time the issue was first raised,
I wonder if this change could be the culprit: reference removed
In my understanding, having a Netlify-Vary with query=__nextDataReq is like saying that other query parameters don't affect the response, which is not the case, and all of the above queries end up in the same cache key whereas they shouldn't.
It looks like your docs example with Netlify-Vary: query=style|season.
Do I miss something?
The text was updated successfully, but these errors were encountered:
After some more testing, these api queries could effectively be cached under the same cache key, but that was also the case before the __nextDataReq change.
Setting Cache-Control header to no-cache permitted to resolve that.
Note that setting Netlify-Vary header to query was also a possibility, it resolved the same response issue, but individual queries would still have been cached.
Some users who deployed Umami on Netlify started to have issues about responses being cached incorrectly (reference removed)
Here are a few queries which are returning the same cached response: (a part of 8 queries sent at the same moment)
Reading Netflify docs (https://docs.netlify.com/platform/caching/) and looking at the time the issue was first raised,
I wonder if this change could be the culprit: reference removed
In my understanding, having a Netlify-Vary with
query=__nextDataReq
is like saying that other query parameters don't affect the response, which is not the case, and all of the above queries end up in the same cache key whereas they shouldn't.It looks like your docs example with
Netlify-Vary: query=style|season
.Do I miss something?
The text was updated successfully, but these errors were encountered: