New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@collection-storage/redis

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@collection-storage/redis

Redis adaptor for collection-storage

latest
Source
npmnpm
Version
4.0.7
Version published
Maintainers
1
Created
Source

Collection Storage Redis Connector

This is a database connector for collection-storage. See the main project's documentation for general usage.

warning: Redis support is experimental and the database format is likely to change in later versions.

Install dependency

npm install --save collection-storage @collection-storage/redis

For synchronous access:

import '@collection-storage/redis';

Or, for dynamic access (only loaded if / when used):

import { CollectionStorage } from 'collection-storage';

CollectionStorage.dynamic([
  ['redis', () => import('@collection-storage/redis')],
  ['rediss', () => import('@collection-storage/redis')],
]);

Connection String

redis://[username:password@]host[:port][/[database-index][?options]]
rediss://[username:password@]host[:port][/[database-index][?options]]

See the ioredis documentation for more details.

Limitations

Note that this connector does not currently support migrating indices. If you add a new index, it will be updated for newly added data, but existing data will not be included. If you remove an index, it will stop being used but the backing data for it will remain.

Keywords

nosql

FAQs

Package last updated on 13 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts