File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
packages/cloudflare/src/api/overrides/tag-cache Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ export const BINDING_NAME = "NEXT_TAG_CACHE_KV";
16
16
* KV is eventually consistent and can take up to 60s to reflect the last write.
17
17
* This means that:
18
18
* - revalidations can take up to 60s to apply
19
- * - when a page depends on multiple tags they can be inconsistent for up to 60s
19
+ * - when a page depends on multiple tags they can be inconsistent for up to 60s.
20
+ * It also means that cached data could be outdated for one tag when other tags
21
+ * are revalidated resulting in the page being generated based on outdated data.
20
22
*/
21
23
export class KVNextModeTagCache implements NextModeTagCache {
22
24
readonly mode = "nextMode" as const ;
You can’t perform that action at this time.
0 commit comments