Skip to content

heroku-redis-flexi is a heroku Redis session store wrapper for connect-redis tweaked to work with all redis products offered on Heroku

License

Notifications You must be signed in to change notification settings

blisteringherb/heroku-redis-flexi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Heroku Redis Flexi

This is a fork of the connect-heroku-redis package with minor tweaks.

Heroku Redis Flexi is a wrapper for connect-redis using any of the Redis products that Heroku provides. Currently it supports openredis, RedisGreen, Redis To Go, MyRedis (beta), and Redis Cloud (beta).

Installation

$ npm install heroku-redis-flexi

Features

  • Detects Heroku Redis product url on the environment and defaults it onto the RedisStore options.
  • Defaults to local store if Heroku Redis to Go environment variable is not detected.

Examples

var connect = require('connect'), 
    HerokuRedisStore = require('heroku-redis-flexi')(connect);

connect.createServer(
  connect.cookieParser(),
  // 5 minutes
  connect.session({ store: new HerokuRedisStore({product: 'myRedis'}), secret: 'keyboard cat' })
);

License

Copyright (C) 2012 by Morgan Rich [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

heroku-redis-flexi is a heroku Redis session store wrapper for connect-redis tweaked to work with all redis products offered on Heroku

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%