Socket
Socket
Sign inDemoInstall

redis-connection-pool

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redis-connection-pool

Redis client connection pool


Version published
Weekly downloads
1.6K
increased by21.57%
Maintainers
1
Weekly downloads
 
Created
Source

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

Keywords

FAQs

Package last updated on 18 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc