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 store ready to scale with node-pool support
Note: This lib is in beta
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 = {
// Go get 'em tiger!
});
Run tests
bash test.sh