Skip to content

addisonj/cacher-redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"

About

No description, website, or topics provided.

Resources

Stars

4 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors