3.2.0 • Published 8 months ago

rediss v3.2.0

Weekly downloads
32
License
ISC
Repository
github
Last release
8 months ago

User Friendly Redis Toolkit

NPM version Downloads Build Status node

Use Redis' commands straight-forward, with no need to remember the complicated Redis API in mind.

Motivation

let redisList = new RedisList('mykey');

let index = await redisList.push('str1');
let data = await redisList.pop();

console.log(index); // Will print 0
console.log(data); // Will print 'str1'

Contribute

Since wrap all Redis commands can take long time, you're welcome to contribute ;)

Support

  • Node > 10
  • Tested on Redis 2.8.2400

Install

npm i rediss -S

Docs

Data types

Note: objects can save mixed JavaScript data, it's means that when saving a value will fetch exactly as saved - with the same type, objects will internally JSON.stringify before save and JSON.parse after fetch

Errors

RedisError

A readonly error that contain the reason something has failed

3.2.0

8 months ago

3.1.0

8 months ago

2.0.0

5 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.21

6 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago