Package Exports
- simple-redis-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 (simple-redis-pool) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
simple-redis-pool
Redis pool ready to scale with node-pool support
Prerequisites
This module requires nodejs v4 or above as it has dependencies on constious es6 components such as Map, Set, Promise etc.
Getting started
npm install simple-redis-pool
var RedisPool = require("simple-redis-pool");
var pool = new RedisPool();
pool.acquire()
.then(conn => {
// Do some work
// At the end release the conn back to the pool
pool.release(conn)
});
API
- RedisPool([options])
options
object properties
Property | Default | Description |
---|---|---|
name | Random unique string | Name your pool |
redisOptions | {url: redis://127.0.0.1:6379} |
opts from https://github.com/NodeRedis/node_redis#options-object-properties |
poolOptions | null | opts from https://github.com/coopernurse/node-pool#createpool |
logger | null | Inject your custom logger |
Run tests
bash test.sh
Contribute
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.
Backers
Maintainers
These amazing people are maintaining this project:
Sponsors
No sponsors yet! Will you be the first?
Contributors
These amazing people have contributed to/reviewed this project:
Discover how you can contribute by heading on over to the CONTRIBUTING.md
file.