@nano-sql/adapter-redis
TypeScript icon, indicating that this package has built-in type declarations

2.0.7 • Public • Published

nanoSQL Logo

nanoSQL Logo nanoSQL Logo

nanoSQL 2 Redis Adapter

Allows you to run Redis with nanoSQL 2

Documentation | Bugs | Chat

Installation

npm i @nano-sql/adapter-redis --save

Usage

import { Redis } from "@nano-sql/adapter-redis";
import { nSQL } from "@nano-sql/core";

nSQL().connect({
    id: "my_db",
    mode: new Redis(),
    tables: [...]
}).then(...)

API

The Redis class accepts two optional arguments

Redis Client Connect Options

The adapter uses the npm redis module internally and calls redis.createClient to connect to the redis database.

You can optionally pass in a configuration object to adjust things like the port and ip address the client will attempt to connect to.

All of the configuration options are documented here.

Redis Client Callback

A function that will be called once the redis client connects, the argument passed into the function will be the redis client itself, giveing you access to perform redis queries manually or add event listeners.

MIT License

Copyright (c) 2019 Scott Lott

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Changelog

[2.0.7]

  • Documentation and dependency updates.

[2.0.6]

  • Package.json, performance, dependency & Readme updates.

[2.0.5]

  • Fixed package.json issue.

[2.0.4]

  • Adjusted secondary index read.

[2.0.3]

  • Added details to package.json

[2.0.1] & [2.0.2]

  • Fixed readme bug

[2.0.0]

  • First release

Package Sidebar

Install

npm i @nano-sql/adapter-redis

Homepage

nanosql.io/

Weekly Downloads

0

Version

2.0.7

License

MIT

Unpacked Size

60.9 kB

Total Files

8

Last publish

Collaborators

  • clicksimply