Skip to content
This repository has been archived by the owner on May 16, 2019. It is now read-only.

Files

Latest commit

author
Ilya Atamas
Mar 14, 2019
a67b04d · Mar 14, 2019

History

History
33 lines (25 loc) · 445 Bytes

File metadata and controls

33 lines (25 loc) · 445 Bytes

@emeralt/database-redis

Emeralt database plugin to store packages in Redis

Install

Using npm:

npm install @emeralt/database-redis

or using yarn:

yarn add @emeralt/database-redis

Usage

new EmeraltDatabaseRedis(options)

Options

type Options = {
  // connection options
  redis?: RedisOptions

  // string to prefix paths with
  // allows to create isolated namespaces
  prefix?: string
}