Redis driver for the Databank key-value/document store abstraction library. Current version 0.19.6 (last released 2014, unmaintained). Provides a Redis-backed implementation of the Databank interface, storing objects as JSON strings with automatic indexing via Redis sets. Works with Node.js >=0.6.x. Limited to basic CRUD and set intersection queries; no support for Redis clustering, advanced data structures, or transactions.
npm install databank-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Import Databank and the Redis driver, connect, perform CRUD operations on a person object.
Use databank v0.x, or migrate to a different abstraction library.
Consider using ioredis or redis-om for a maintained solution.
Set `checkIndices: false` in options if you do not need automatic index sync.
Ensure numeric values are actually numbers, not strings, before saving.
Provide a valid integer between 0 and 15 (or configured max).
npm install databank
Change to: const { Databank } = require('databank'); or import { Databank } from 'databank';Start Redis server or provide correct host/port in options.