Redis storage backend for the 'kv' key-value store library. Version 0.1.3 is the current stable release. This package provides a simple integration for using Redis as the persistent layer for kv. It wraps redis operations and exposes them through the kv abstraction, enabling easy swapping of storage backends. Differentiators: minimal overhead, direct use of node_redis client, and compatibility with kv's API.
npm install kv-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create a RedisKV instance, connect it to a KV store, perform basic put/get/delete operations.
Use named import { RedisKV } from 'kv-redis'.Implement retry logic or use a wrapper around the connection.
Connect explicitly via the init method or wait for the 'ready' event if using client directly.
Run npm install kv-redis, then ensure correct import path.
Use import { RedisKV } from 'kv-redis'.Check REDIS_URL env var or default host:port, start Redis server.