0.0.4 • Published 10 years ago

cacher-nedb v0.0.4

Weekly downloads
4
License
BSD
Repository
github
Last release
10 years ago

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"

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago