1.0.3 • Published 7 years ago

egg-session-memcached v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

egg-session-memcached

Session extension for store the session data in memcached.

Install

$ npm i egg-session-memcached --save

Usage

// {app_root}/app.js
// If you want to use session in your middleware. You need to add it after session middleware.
const index = app.config.coreMiddleware.indexOf('session');
if (index >= 0) {
  app.config.coreMiddleware.splice(index + 1, 0, MyMiddleware);
}
// {app_root}/config/plugin.js
exports['session-memcached'] = {
  enable: true,
  package: 'egg-session-memcached'
};

Configuration

// {app_root}/config/config.default.js 
exports['session-memcached'] = {
  client: {
    host: `${YOUR_MEMCACHED_HOST}`,
    port: `${YOUR_MEMCACHED_PORT}`,
    failOverServers: [] // Your memcached fail over servers. Including the port and host.
  }
};
1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago