You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client)!: bring your own Redis client; zero runtime dependencies (5c44602)
Bug Fixes
correct ESM type resolution and typed client acceptance (a9439ec)
harden client resolution, cache semantics, and invalidation lifecycles (aabfda0)
maintenance: match key-generator casing in patterns and comparisons (b6f4caf)
Features
auto: invalidateOnWrite purges a model's auto-cache after writes (2b6a89f)
diagnostics: fail fast when the server lacks RedisJSON (5827e22)
BREAKING CHANGES
the client option accepts client instances only.
Replace client: {host, port} or client: 'redis://...' with
client: new Redis({host, port}) (npm i iovalkey or ioredis), an
@upstash/redis instance, or a custom RedisApi implementation. See
docs/MIGRATION.md.