使用redis-connect但会话正在node.js服务器重启上被删除

时间:2014-01-26 12:46:16

标签: node.js express

我在基于express的node.js项目中使用redis作为会话存储。会话工作正常,但是当我重新启动应用程序服务器时,我发现所有会话都丢失了(即所有用户都被重定向到主页)。

我可以看到使用redis管理工具仍然可以在redis中访问会话密钥。

有什么想法吗?

我的服务器设置如下所示......

var redisSessionStore = require('connect-redis')(express);
global.sessionStore = new redisSessionStore({prefix:"sess:"});
app.configure(function(){
    app.use(express.cookieParser());
    app.use(express.session({ secret: sessionSecret, store: global.sessionStore, key: global.sessionCookieName, cookie: { secure: true, httpOnly: true, domain: "." + global.canonical, expires: false} }));
})
app.configure('development', function () { app.use(express.errorHandler({ dumpExceptions: true, showStack: true })); });
app.configure('production', function () { app.use(express.errorHandler()); });

1 个答案:

答案 0 :(得分:1)

@robertklep回答

问题是由sessionSecret在每次重启时发生变化引起的。