nodejs mysql session_NodeJS Express-Session MySQL为每个请求创建新会话

端木元青
2023-12-01

我有一个使用与MySQL的快速会话的NodeJs,Express应用程序。在我的Mac上,我为每个请求设置了一个新的sessionId。结果是,当应用程序正在查找以前写入会话的数据时,它不在那里,因为它在不同的会话上。相同的代码在Centos测试框上正常工作。

会话设置代码看起来如下所示:

appConfig.db:

db: {

"host" : "localhost",

"database": "secure_portal",

"user" : "username",

"password" : "password",

"debug" : true,

checkExpirationInterval: 900000,// How frequently expired sessions will be cleared; milliseconds.

expiration: 86400000,// The maximum age of a valid session; milliseconds. = 24hrs

},Server.js:

// Sessions

var sessionStore = new MySQLStore(appConfig.db);

server.use(session({

secret: 'somesecret',

name: 'sessionId',

resave: false,

store: sessionStore,

saveUninitialized: true,

cookie: {

secure: false,

//maxAge: appConfig.session_length * 60 * 1000,

expires: new Date(Date.now() + 900000000)

}

}));我们在生产中也有很好的运行。我们已经经历了一大堆计算器并且没有运气。

我在机器上丢失了什么?

Mac是10.10.5,我使用的是PyCharm 2016.3.2

谢谢。

 类似资料: