Redis
 sql >> база данни >  >> NoSQL >> Redis

Сесията на NodeJS + ExpressJS + RedisStore е недефинирана

Ще трябва да инстанцирате сесиите преди маршрутите.

var express = require('express'),
    RedisStore = require('connect-redis')(express),
    Config = require('./config/config'),
    cluster = require("cluster"),
    QueryManager = require('./service/query_manager'),
    app = express();

app.use(express.cookieParser());
app.use(express.session({
    store: new RedisStore({
        host: Config.redis.host,
        port: Config.redis.port
    }),
    secret: 'Its a secret.',
    cookie: { secure: true }
}));    

// --- Index --- //
function renderSplash(req, res) {
    res.render(...);
}
function renderIndex(req, res) {
    res.render(...);
}

app.get('/', function(req, res) {
    if(req.session.user === null) {
        renderSplash(req, res);
    } else {
        renderIndex(req, res);
    }
});



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Heroku Redis - GUI и оптимизация на паметта

  2. Как да визуализирате използването на Resque с Node.js, WebSockets и Redis

  3. Redis::CommandError:ERR Клиентът изпрати AUTH, но не е зададена парола

  4. Nodejs, без да чака заявката на Redis да завърши, преди да продължи с изпълнението

  5. как да имате отношения много към много в redis