Koa redis Link

Source: Internet
Author: User
Tags connect socket

Koa is a new-generation framework

NPM install Koa-redis

 

The Code is as follows:

var koa = require(‘koa‘);var http = require(‘http‘);var session = require(‘koa-sess‘);var redisStore = require(‘koa-redis‘);var app = koa();app.name = ‘koa-session-test‘;app.keys = [‘keys‘, ‘keykeys‘];app.use(session({  store: redisStore()}));app.use(function *() {  this.session.name = ‘koa-redis‘;  this.body = this.session.name;});var app = module.exports = http.createServer(app.callback());app.listen(8080);

Options

 * {Object} client    redis client
* {String} host      redis connect host (without options.client)
* {Number} port      redis connect port (without options.client)
* {String} socket    redis connect socket (without options.client)
* {String} db        redis db
* {String} pass      redis password

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.