@akshay_pachaar: Redis built a cache that cuts LLM costs by 70%! Production LLM apps often receive different versions of the same questi…
Summary
Redis LangCache is a semantic caching tool that reduces LLM costs by up to 70% by storing and reusing similar question-response pairs, making AI applications faster and more cost-effective.
View Cached Full Text
Cached at: 09/23/26, 10:16 PM
Redis built a cache that cuts LLM costs by 70%!
Production LLM apps often receive different versions of the same question.
For instance, an internal developer assistant might receive:
- “How do I rotate an API key?”
- “Where can I replace my API key?”
The wording is different, but both questions have the same answer.
Prefix caching cannot handle this repeated generation because it only reuses computation when the cache matches bit-by-bit.
And if the cache hits, an LLM response is still generated again.
A semantic cache stores the complete question-response pair outside the model.
When a query arrives, it searches for previously answered questions with similar meaning. A valid match returns the stored response with no LLM call.
If you want to use this in practice, @Redisinc already implements it as a managed service called Redis LangCache.
Under the hood, LangCache embeds the incoming question, searches stored responses, and applies the configured similarity threshold and filters.
A cache hit returns the earlier response. A miss falls back to the LLM, after which the new response can be stored for future requests.
Redis also handles access scopes, custom filters, embedding selection, TTL, eviction, and monitoring through a REST API, without another database to deploy or manage.
While the actual savings depend on how much safe repetition exists in the workload, cache-hit responses are up to 15x faster and 70% cheaper.
Try Redis LangCache: https://fandf.co/4d3ixqL
I built a small interface comparing LangCache with direct LLM inference. The video below shows this in action, and I worked with Redis on this post to put it together.
To dive deeper, my co-founder published a detailed article on KV, prefix, prompt, and semantic caching.
Read it below.
Redis LangCache
Source: https://redis.io/langcache/?utm_source=influencer&utm_medium=paid-post&utm_campaign=2026-09-ai_in_production-influencer&utm_content=a-pachaar-x PlatformDeployTools
- Redis InsightUI to visualize, query, & debug
- RIOTGet data into Redis from anywhere
- Client librariesPython, Node, Java, Go, .Net, & more
- SDKsConnect Redis to your apps
SolutionsAI & ML Apps
- Scale agent & agentic systemsEverything you need to be successful
- RAGUnderstand how Redis powers RAG
- Semantic searchRight answers, right now
- MLLeverage your features, fast
- Token optimizationAll the AI without all the cost
Core Workloads
- Fraud detectionStop fraud, protect customers
- Real-time decisionsAct on data in real time
- Caching & performanceOur bread & butter
- Real-time messagingStreams at the speed of thought
- Session managementConsistent experiences everywhere
- LeaderboardsKnow who’s winning
DevsLearning
- BlogAll the words
- Resource centerEverything you need, in one place
- Demo centerAnything & everything, in action
- Reference architecturesNo guessing, just deploy
saw a 40% increase in revenue generation through their new Redis powered online experience.See how
uses Redis for 100+ vector search queries per second.See how
achieved 37% faster API response times while having a 15% lower memory footprint with Redis.See how
saw over a billon API request per month with Redis.See how
Latest

Office hours: Why your agents keep losing the plot
Sep. 09, 2026
Similar Articles
@addyosmani: Moving AI to production? A big chunk of your token bill is spent answering the same question twice - and agents burn ~4…
A tweet promoting Redis LangCache as a managed semantic caching solution for AI production, claiming up to 90% reduction in API costs.
@Alacritic_Super: Building an AI app? Cut down your API costs and speed up response times with an LLM Cache built in Rust! Every time a u…
This article introduces an LLM cache built in Rust to reduce API costs and speed up response times by reusing previous answers through exact and semantic matching.
@akshay_pachaar: https://x.com/akshay_pachaar/status/2074502882812952666
A practitioner's guide to KV cache management, introducing the open-source LMCache architecture that cuts input token costs by 90% and speeds up LLM inference by up to 14x by eliminating redundant context processing in agentic workflows.
@Alacritic_Super: If you are building production LLM applications, learn LLM Caching. Caching can reduce latency, GPU utilization, and AP…
This article emphasizes the importance of LLM caching in production systems to reduce latency, GPU utilization, and costs, and introduces LMCache, an open-source KV cache management layer for scalable LLM inference.
@techNmak: Your LLM inference is burning 50% of its compute on work it has already done. If you're running RAG or Multi-Turn Chat,…
LMCache is an open-source library that makes KV cache persistent and shareable across requests, eliminating recomputation in RAG and multi-turn chat workloads, achieving up to 15x throughput gain and 3-10x reduction in time-to-first-token.