JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 826
  • Score
    100M100P100Q102175F
  • License AGPL

Redis client connection pool

Package Exports

  • redis-connection-pool

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (redis-connection-pool) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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-pool

Usage

var redisPool = require('redis-pool')('myRedisPool');

redisPool.set('test-key', 'foobar', function (err) {
  redisPool.get('test-key', function (err, reply) {
    console.log(reply); // 'foobar'
  });
});

Implemented methods

  • get
get(key, cb)
  • set
set(key, value, callback)
  • hget
hget(key, field, callback)
  • hset
hset(key, field, value, callback)
  • brpop
brpop(key, cb)
  • blpop
blpop(key, cb)
  • rpush
rpush(key, value, callback)
  • lpush
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