AIToday
Large Language ModelsAI Business & IndustryDaily Dose of Data SciencePublished: Sep 24, 2026, 04:00 JST

Redis LangCache: 15x faster, 70% cheaper on cache hits

Redis LangCache: 15x faster, 70% cheaper on cache hits

3 Key Points

  1. What happened

    Redis launched LangCache, a managed semantic cache that stores full question-response pairs outside the model, and reports cache-hit responses are up to 15x faster and 70% cheaper.

  2. Why it matters

    Apps that field many reworded versions of the same question, like internal developer assistants, can skip the model call entirely when a similar question was already answered.

  3. What to watch

    The savings hinge on how much safe repetition exists in a given workload; the body gives no customer counts or prices.

WHO IT HITSEngineering and platform teams running customer-facing or internal LLM assistants that see repeated questions would see the largest savings, since the body ties the 15x and 70% figures to cache-hit responses.

Not sure about something? Ask the AI

Summaries like this, in your inbox every morning.

Context & Analysis

The article, published on the Daily Dose of Data Science blog, pairs two explanations: a practical caching layer for LLM apps and a deeper walkthrough of how mixture-of-experts models are served. On the caching side, the pitch is that production assistants often receive differently worded versions of the same question. Prefix caching cannot help because it only reuses computation on an exact match, and even then a response is generated again. LangCache instead stores complete question-response pairs outside the model, embeds the incoming question, searches stored responses, and applies a configured similarity threshold. A hit returns the earlier answer, while a miss falls back to the model and can store the new response for later.

On the serving side, the article follows a token through an MoE layer. A router scores experts and selects a subset per token; the runtime dispatch groups those assignments into expert matrices, and combine returns results to their original tokens. It stresses that activated parameters estimate computation for one token, while resident parameters determine weight memory — the model card's 3.3 billion activated parameters do not describe the deployment's memory footprint.

The piece also draws a line between optimizations that change only execution, such as fusion, grouped GEMM, and placement, and those that change numerical values or which computation runs, such as quantization and reducing top-k. A cited paper, Training-Free Halving of Activated Experts, reports that standard reduction from eight experts to four on Qwen3.6-35B-A3B lost 4.65 MMLU points, while an adjusted reference mass cut the measured loss to 0.35 points. Whether LangCache's stated savings materialize in any given deployment appears to hinge on how much safe repetition that workload actually contains.

FAQ
How is a semantic cache different from prefix caching?
Prefix caching only reuses computation when the cache matches bit-by-bit and still generates a response. A semantic cache stores full question-response pairs outside the model and returns a stored answer for a similar-meaning query with no LLM call.
What does Redis LangCache manage for you?
It handles access scopes, custom filters, embedding selection, TTL, eviction, and monitoring through a REST API, without another database to deploy or manage.
Does sparse expert activation in Qwen3-30B-A3B mean the model is small?
No. The model card reports 30.5 billion total parameters and 3.3 billion activated parameters, and each token selects eight of 128 routed experts. Storing its 30.5 billion parameters at two bytes each requires about 61 GB for the weights alone.
Daily Dose of Data ScienceRead Original Article

Get the latest Large Language Models news every morning

For example, today's edition would include:

  • Rabbit unveils OS3, a cloud AI agent for up to five machinesSiliconANGLE AI · 1h ago
  • Qualcomm, Google widen Snapdragon Summit 2026 tie-upDIGITIMES Asia · 1h ago
  • YouTube Studio adds AI script coach, Gemini editingTHE DECODER · 1h ago

AI-summarized, only the topics you pick — one digest a day via Email, LINE, or Slack.

Free · 30 seconds with Google · unsubscribe anytimeWhat is AIToday? →

Ask AI

Ask AI anything about this article. Q&As are published on this page for other readers too.

Related Articles

Next articleChatGPT Voice taps GPT-6 Astra, Sol, Luna for email, Slack