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";
1616 * KV is eventually consistent and can take up to 60s to reflect the last write.
1717 * This means that:
1818 * - 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.
2022 */
2123export class KVNextModeTagCache implements NextModeTagCache {
2224 readonly mode = "nextMode" as const ;
You can’t perform that action at this time.
0 commit comments