| B | |
| blpop | |
| brpop | |
| C | |
| check | |
| clean | |
| D | |
| del | |
| E | |
| expire | |
| F | |
| Functions | |
| G | |
| get | |
| H | |
| hget | |
| hgetall | |
| hset | |
| L | |
| lpush | |
| O | |
| on | |
| R | |
| redis-connection-pool.js | |
| RedisConnectionPool | |
| rpush | |
| S | |
| set |
Execute a redis BLPOP command
RedisConnectionPool.prototype.blpop = function ( key, cb )
Execute a redis BRPOP command
RedisConnectionPool.prototype.brpop = function ( key, cb )
Performs a check on redis version and sets internal config based on support.
RedisConnectionPool.prototype.check = function ()
Clean the redis key namespace
RedisConnectionPool.prototype.clean = function ( key, cb )
Execute a redis DEL command
RedisConnectionPool.prototype.del = function ( key )
Execute a redis EXPIRE command
RedisConnectionPool.prototype.expire = function ( key, data )
Execute a redis GET command
RedisConnectionPool.prototype.get = function ( key, cb )
Execute a redis HGET command
RedisConnectionPool.prototype.hget = function ( key, field, cb )
Execute a redis HGETALL command
RedisConnectionPool.prototype.hgetall = function ( key, cb )
Execute a redis HSET command
RedisConnectionPool.prototype.hset = function ( key, field, data, cb )
Execute a redis LPUSH command
RedisConnectionPool.prototype.lpush = function ( key, data, cb )
listen for redis events
RedisConnectionPool.prototype.on = function( type, cb )
A high-level redis management object.
function RedisConnectionPool( uid, cfg )
Execute a redis RPUSH command
RedisConnectionPool.prototype.rpush = function ( key, data, cb )
Execute a redis SET command
RedisConnectionPool.prototype.set = function ( key, data, cb )