0.0.3 • Published 11 years ago
redisp v0.0.3
redisp
How to install
npm install redisp --saveredisp is a connection factory for redis with a built-in support for pooling.
How to use
var pool = require('redisp')();
//creates a dedicated client connection
pool.create(function(err, conn) {
});
//retrieves a client connection from the pool
pool.borrow(function(err, conn) {
//operations here
conn.release(); //return this client connection into the pool
});Options
var pool = require('redisp')(opts);List of available options:
host: host to connect redis on (127.0.0.1)port: port to connect redis on (6379)password: password used in authentication ('')maxConnections: maximum number of connections that can be held in the connection pool. IfmaxConnectionsis reached, new calls topool.borrowwill be blocked until a client connection is released.
All other options are the same as in redis.
License
MIT