Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/lib/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,12 @@ const loadAllBenchmarksCached = unstable_cache(
}
return benchmarks.sort((a, b) => a.number.localeCompare(b.number));
},
["all-benchmarks-v5"],
// v6: aggregate cache. Bumped together with bench-unfiltered-v4 so
// the per-bench providersPerChain field actually propagates into the
// benchmark slice the products page reads. Without bumping this, the
// outer cache can keep serving v5-era benchmarks (no providersPerChain)
// even after the inner cache is fresh.
["all-benchmarks-v6"],
{ revalidate: 60, tags: ["benchmarks"] },
);
export const loadAllBenchmarks = cache(loadAllBenchmarksCached);
Expand Down
Loading