cacher-nedb

0.0.4 • Public • Published

CacherRedis

This is a pluggable backend for Cacher (https://github.com/addisonj/node-cacher)

What is it?

A small adapter that uses redis as a backend

Options

CacherRedis takes the same parameters as node-redis.createClient (https://github.com/mranney/node_redis)

var CacherRedis = require('cacher-redis')
var cacheBackend = new CacherRedis(port, host, opts)

Additionally, it can take an existing redis connection and resuse it:

var redisClient = require('redis').createClient()
var CacherRedis = require('cacher-redis')
var Cacher = requrie('cacher')
var cacher = new Cacher(new CacherRedis(redisClient))

Keys are also namespaced, opts.namespace defines the namespace, the deafult namespace is "cacher"

Package Sidebar

Install

npm i cacher-nedb

Weekly Downloads

1

Version

0.0.4

License

BSD

Last publish

Collaborators

  • skiltz