Redis storage backend for Cachetree, a caching library. Version 3.0.0 provides an adapter that connects Redis to Cachetree's tree-based caching system. It wraps the redis npm client and handles serialization, database selection, and authentication. This package is specifically for Cachetree users who want a Redis store; it is not a general-purpose Redis client. Release cadence is low; maintained as part of the Cachetree ecosystem.
npm install cachetree-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Create a Cachetree instance with a Redis backend, set and get a value.
Eliminate port/host/options when using a pre-created client.
Use a single password option to avoid confusion.
Set autoCast: false in options if you need to store raw values.
Select database on the client before passing it in.
Check redis version requirements; consider pinning redis to v2.x.
Ensure 'var cachetree = require('cachetree');' and that cachetree exports a constructor.Start Redis server or provide correct host/port in options.
Use store.client.get directly; it is the underlying Redis client.