node-redis-connection-pool
A node.js connection pool for Redis.
About
node-redis-connection-pool is high-level redis management object. It manages
a number of connections in a pool, using them as needed and keeping all aspects
of releasing active connections internal to the object, so the user does not
need to worry about forgotten connections leaking memory and building up over
time.
Installation
npm install redis-connection-pool
Usage
var redisPool = require('redis-connection-pool')('myRedisPool');
redisPool.set('test-key', 'foobar', function (err) {
redisPool.get('test-key', function (err, reply) {
console.log(reply);
});
});
Implemented methods
get(key, cb)
set(key, value, callback)
expire(key, value)
hget(key, field, callback)
hgetall(key, callback)
hset(key, field, value, callback)
brpop(key, cb)
blpop(key, cb)
rpush(key, value, callback)
lpush(key, value, callback)
API Documentation
node-redis-connection-pool uses NaturalDocs to generate API documentation, which can be
viewed after cloning the repository, in the doc/ directory, using a web browser.
License
Licensed under the AGPLv3