👉 Access our AI Architects course & join hundreds of serious AI builders in our community: https://www.theaiautomators.com/?utm_...
🔗 Related videos and resources:
Pinecone Nexus video: • Andrej Karpathy's Wiki Idea Was Just Shipp...
Self-service agent video: • I Deployed a Secure Multi-User AI Agent in...
Redis Iris: https://redis.io/iris/
Redis has just announced Iris, a new architecture for AI agent retrieval that takes a very different approach to the knowledge layer problem. Rather than pre-compiling answers into a static artifact, Iris focuses on keeping a fast, navigable copy of your operational data that agents can query in real time, making it well-suited to environments where the underlying data changes frequently.
In this video, I walk through the Redis Iris stack, what each component does, and how its runtime approach compares to build-time alternatives like Pinecone Nexus. We also compare against why naive RAG and even many agentic RAG configurations struggle in real production systems, especially in use cases like customer support where an agent needs to pull from databases, ticketing tools, shipping providers, and policy docs to answer a single question.
What's covered:
Redis' four core requirements for agent retrieval at scale: navigability, speed, freshness, and self-improvement
Redis Data Integration (RDI) and how change data capture keeps an operational copy of your data in sync from sources like Postgres, Oracle, Snowflake, and MongoDB
Why mirroring data into Redis protects your transactional systems from being hammered by agentic workloads
Redis Context Retriever: defining entities, fields, relationships, and tools (find, get, search, filter) exposed via MCP or CLI with row-level access control
Redis Agent Memory: short-term session memory with custom TTL, plus long-term memory for preferences, learned patterns, and promoted session data
LangCache for semantic response caching, including similarity thresholds, search strategies, and the risks of stale or out-of-context cache hits
Redis Search across vector, structured, and unstructured data in a single index
Redis Flex, the new SSD-based storage tier for more cost-effective scaling beyond pure in-memory
A direct comparison of Redis Iris (runtime, fresh-on-demand) vs Pinecone Nexus (build-time, pre-compiled knowledge artifacts) and when each architecture fits best
Chapters:
0:00 - Overview
2:12 - Requirements for agents at scale
3:06 - What is Redis Iris
4:25 - Redis Data Integration (RDI)
5:37 - Redis Context Retriever
6:28 - Redis Agent Memory
7:18 - LangCache
8:01 - Redis Search and Redis Flex
8:50 - Not plug and play
9:04 - Comparison vs Pinecone Nexus
10:54 - No one-size-fits-all retrieval