1.0.9 • Published 6 years ago

node-redis-adapter v1.0.9

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

node-redis-adapter

Add extra functionality to the node redis library.

Install with:

npm install node-redis-adapter

Usage Example

You should simply require the adapter by specifying the prefix of the application and letting it do the rest.

var redis = require('redis');
var redis_client = redis.createClient();
var redis_adapter = require("node-redis-adapter")(redis_client, "myapp");

Prefix

The library allows you to add a prefix to the redis variables so they can not interfere with those of other applications.

Once indicated the prefix in the requirement, it is added automatically.

Null and undefined

The library autoparse the stringify 'null', and 'undefined' values to the real null and undefined values.

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago