0.0.7 • Published 11 years ago
connect-heroku-memcached v0.0.7
Connect Heroku Memcached
A connect session store that implements the memcached binary protocol for use with heroku's and others memcache services.
Thanks to memcache binary protocol implementation in alevy's memjs library.
Install
npm install connect-heroku-memcached
Usage
var HerokuMemcachedStore = require('connect-heroku-memcached')(express)
...
app.use(express.session({
secret: 'some secret for your cookie',
store: new HerokuMemcachedStore({
servers: ["server1", "server2", "server3:11711"]
username: "username",
password: "p4ssw0rd"})
})
);