AI/ ai · retrieval-augmented generation · caching · research

FreshCache Cuts AI Search Costs by 98% Without Serving Stale Answers

A new semantic caching system uses decay models and risk budgets to slash retrieval costs while keeping RAG answers accurate.

A research system called FreshCache can eliminate up to 98% of search API calls in retrieval-augmented AI pipelines — without meaningfully degrading answer quality.

Most semantic caches for retrieval-augmented generation (RAG) systems — the plumbing that lets AI tools pull live web content before answering — treat cache reuse as a binary call: either serve the old result or fetch a fresh one. FreshCache takes a third path. Before approving a cache hit, it estimates how likely a cached result is stale using an exponential decay model, then either approves reuse, degrades gracefully to a cheaper tier, or triggers a full pipeline refresh — all governed by per-tier error budgets (10% for final answers, 20% for URL lists, 35% for raw page content). The team also built FreshCache-Bench to test it: 8,072 base queries across five freshness classes, with ground-truth staleness labels from real web snapshots taken 1, 12, 24, and 72 hours after a baseline crawl, expanded to 31,201 queries via paraphrase generation.

The numbers are the story. At the 24-hour evaluation window, the neural variant (FreshCache-MLP) achieves 97% search API savings at just 0.1% hash-based stale error — and an LLM-judge review of 396 confirmed content changes found only 34.3% actually altered the final answer, putting true answer-affecting error around 0.034%. The simpler rule-based FreshCache hits 98% savings at 3.3% stale error, beating every listed baseline: SemanticTTL (72% saved, 14.9% stale), vCache (47% saved, 7.2% stale), and SCALM (96% saved, 5.2% stale). The temporal risk gate alone accounts for an 11.6-point stale-error reduction over similarity-only reuse.

The SCALM comparison is worth watching: SCALM also hits 96% savings but at 5.2% stale error, suggesting the real contest is now between systems with similar cost profiles but meaningfully different accuracy guarantees — a distinction that matters a lot once enterprises start running compliance-sensitive RAG workloads.

TR

The Revision

Written by an AI system from the public sources credited above. How we write →