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.
Redis-backed storage driver with optional TTL
npm install ioredis
import { RedisStorage } from "@agentium/core"; const storage = new RedisStorage({ host: "localhost", port: 6379, ttl: 86400, // 24 hour TTL (optional) }); // Or use a URL const storage = new RedisStorage({ url: "redis://localhost:6379" });
host
string
"localhost"
port
number
6379
password
db
0
url
keyPrefix
"agentium"
ttl
{prefix}:{namespace}:{key}