JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q48909F
  • License WTFPL

Simplistic cache module that can scale

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

npm version Build Status Coverage Status dependencies Status Gratipay donate button

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