Socket
Socket
Sign inDemoInstall

connect-elasticache

Package Overview
Dependencies
15
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    connect-elasticache

Memcached session store for Connect w/ elasticache support


Version published
Weekly downloads
8
increased by300%
Maintainers
1
Install size
8.31 MB
Created
Weekly downloads
 

Readme

Source

This project is deprecated. Use express-session-cache-manager instead, which supports a memcache engine.

connect-elasticache

Memcached session store with elasticache support, using memcache-plus for communication with cache server.

Fork notice

This is a fork of connect-memcached, using memcached-plus instead.

// also adds options from http://memcache-plus.com/initialization.html
new MemcachedStore({
        hosts: ['127.0.0.1:11211'],
        secret: '123, easy as ABC. ABC, easy as 123' // Optionally use transparent encryption for memcache session data,
        autodiscover: false
    })

Installation

via npm:

$ npm install connect-elasticache

Example

var express      = require('express')
, session        = require('express-session')
, cookieParser   = require('cookie-parser')
, http           = require('http')
, app            = express()
, MemcachedStore = require('connect-elasticache')(session);

app.use(cookieParser());
app.use(session({
      secret  : 'CatOnKeyboard'
    , key     : 'test'
    , proxy   : 'true'
    , store   : new MemcachedStore({
        hosts: ['127.0.0.1:11211'],
        secret: '123, easy as ABC. ABC, easy as 123' // Optionally use transparent encryption for memcache session data
    })
}));

app.get('/', function(req, res){
    if(req.session.views) {
        ++req.session.views;
    } else {
        req.session.views = 1;
    }
    res.send('Viewed <strong>' + req.session.views + '</strong> times.');
});

http.createServer(app).listen(9341, function() {
    console.log("Listening on %d", this.address().port);
});

Options

  • hosts Memcached servers locations, can be string, array, hash.
  • prefix An optional prefix for each memcache key, in case you are sharing your memcached servers with something generating its own keys.
  • ttl An optional parameter used for setting the default TTL
  • secret An optional secret can be used to encrypt/decrypt session contents.
  • algorithm An optional algorithm parameter may be used, but must be valid based on returned crypto.getCiphers(). The current default is aes-256-ctr and was chosen based on the following information
  • ... You can add additional options from memcache-plus
  • ... Rest of given option will be passed directly to the node-memcached constructor.

For details see node-memcached.

Contributors

Big thanks for the contributors! See the actual list here!

License

(The MIT License)

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.

Keywords

FAQs

Last updated on 01 May 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc