惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
N
Netflix TechBlog - Medium
V
Visual Studio Blog
博客园 - Franky
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
量子位
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
V
V2EX
The Cloudflare Blog
月光博客
月光博客
Last Week in AI
Last Week in AI
雷峰网
雷峰网
WordPress大学
WordPress大学
博客园 - 【当耐特】
博客园 - 聂微东
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
LLM-Driven Client-Side Caching: A Hybrid Decision Archite...
Damir Karimo · 2026-05-04 · via DEV Community

Client-side caching is usually implemented as a storage optimization layer (TTL, SWR, invalidation rules). In practice it behaves like a decision system under uncertainty.

Static strategies fail when data volatility is non-uniform across the same application. This leads to either stale UI or excessive network traffic.

This article breaks down:

  • why standard caching approaches plateau
  • where ML improves the system
  • where LLMs actually fit
  • how to design a production-grade decision pipeline

Problem: caching is not a storage problem

Different data types behave differently:

  • user profiles → low volatility
  • feeds / notifications → high volatility
  • search results → context-dependent volatility
  • partially hydrated UI → unknown volatility

The core issue:

caching requires a policy decision per request, not a static rule

So the real problem is:

data → context → decision (cache / revalidate / bypass)

Baseline systems (what already exists)

1. SWR / TTL-based caching

Used in React Query / SWR:

  • stale-while-revalidate
  • background refetch
  • TTL invalidation

Works when:

  • update cycles are predictable
  • data freshness is stable

Fails when:

  • volatility varies inside the same dataset
  • freshness depends on UI state

2. Heuristic scoring systems

Example adaptive TTL:


volatilityScore = EWMA(changeFrequency)
priorityScore = userInteractionWeight * dataImportance
ttl = baseTTL / volatilityScore

Enter fullscreen mode Exit fullscreen mode

Improves:

  • adaptive cache lifetime
  • frequency-aware invalidation

Limitations:

  • requires manual feature design
  • domain-specific tuning
  • breaks under missing signals

3. Lightweight ML models

Typical approach:

  • logistic regression
  • XGBoost / LightGBM
  • embedding classifiers

Pros:

  • fast inference
  • stable behavior
  • cheaper than LLMs

Cons:

  • needs labeled “optimal cache decision” data (rare)
  • retraining pipeline required
  • brittle under product changes

Why all baseline approaches plateau

All classical systems assume:

  • feature space is complete
  • behavior is stationary

In real systems:

  • user behavior is contextual
  • volatility depends on UI state
  • freshness is semantic, not numeric
  • signals are incomplete

Result:

  • heuristics → saturate
  • ML-light → overfit or drift

Key idea: caching is a decision system under uncertainty

Instead of:

“how long do we cache this?”

The correct formulation is:

“what action should we take given incomplete information?”

actions:

  • HIT
  • REVALIDATE
  • BYPASS
  • SWR

Where LLMs fit (and where they don’t)

LLMs are not a replacement layer.

They function as:

fallback policy engine for ambiguous decision space

They are useful only when:

  • scoring model confidence is low
  • signals conflict
  • unseen patterns appear

Architecture: layered decision system

UI Layer
   ↓
Context Builder
   ↓
Policy Engine
   ├── Rule Layer (deterministic)
   ├── ML Scoring Layer (probabilistic)
   └── LLM Fallback Layer (uncertainty)
   ↓
Cache Layer
   ↓
Network

Enter fullscreen mode Exit fullscreen mode

Context model (input abstraction)

All decisions must be based on structured signals:

{
  "key": "user_feed",
  "lastUpdatedMs": 1200,
  "accessFrequency": "high",
  "volatilityScore": 0.82,
  "userAction": "scroll",
  "stalenessToleranceMs": 500
}

Enter fullscreen mode Exit fullscreen mode

Important constraint:

  • no raw prompts
  • only structured features

LLM role (strictly bounded)

LLM is only a classifier:

{
  "strategy": "HIT | REVALIDATE | BYPASS | SWR",
  "ttlMs": 1200,
  "confidence": 0.78
}

Enter fullscreen mode Exit fullscreen mode

Triggered only when:

  • ML confidence < threshold
  • feature signals conflict
  • unseen context patterns

Meta-cache: caching the decision layer

To reduce cost:

decisionCache(contextHash) → strategy

Effects:

  • avoids repeated LLM calls
  • stabilizes latency
  • amortizes inference cost

Cost-aware execution pipeline

IF rule matches:
    use rule engine
ELSE IF ML confidence > threshold:
    use ML model
ELSE:
    use LLM

Enter fullscreen mode Exit fullscreen mode

Typical production distribution:

  • 80–90% rules
  • 10–20% ML
  • <10% LLM

Failure modes

1. Overuse of LLM

Problem:

  • cost spikes
  • unpredictable latency

Mitigation:

  • strict confidence gating
  • bounded invocation layer

2. Latency variance

Problem:

  • inconsistent response time in UI

Mitigation:

  • decision caching
  • async precomputation

3. Model drift

Problem:

  • ML decisions degrade over time

Mitigation:

  • feedback loop
  • periodic recalibration

Engineering takeaways

  • caching is a decision system, not storage optimization
  • SWR + heuristics solve majority of cases
  • ML-light is optimal in stable feature spaces
  • LLMs are only for ambiguous cases
  • production systems require strict routing hierarchy

Conclusion

Client-side caching becomes effective only when modeled as a layered decision system.

  • rules handle deterministic cases
  • ML handles structured uncertainty
  • LLM handles ambiguity

The correct design is hybrid, with strict boundaries and cost control, not LLM-centric

Discussion

Where should the boundary be defined between ML confidence and LLM fallback in production caching systems?