Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use Redis for session storage and persistence.
RedisDb
docker run -d \ --name my-redis \ -p 6379:6379 \ redis
from agno.agent import Agent from agno.db.redis import RedisDb # Initialize Redis db (use the right db_url for your setup) db = RedisDb(db_url="redis://localhost:6379") # Create agent with Redis db agent = Agent(db=db)
id
Optional[str]
redis_client
Optional[Redis]
db_url
db_prefix
str
"agno"
expire
Optional[int]
session_table
memory_table
metrics_table
eval_table
knowledge_table
traces_table
spans_table
Was this page helpful?