Express Session不使用Expression会话存储在redis中 - 连接redis

时间:2017-11-25 13:04:04

标签: javascript node.js express redis router

是否有人在Redis中存储表达式会话的工作代码?

我创建了angular 4登录页面。我想使用Express会话在Redis中存储用户会话。

我的错误会话未定义

如何在Redis中查看sessionID?

我很震惊。有没有人面临同样的问题?谢谢你的帮助

1 个答案:

答案 0 :(得分:1)

您可以使用express-sessionconnect-redis来实现这一目标。

一个完整的例子:

const express = require('express');
const app = express();

const session = require('express-session');
const RedisStore = require('connect-redis')(session);

// Create redis client
const redis = require('redis');
// default client tries to get 127.0.0.1:6379
// (a redis instance should be running there)
const client = redis.createClient();
client.on('error', function (err) {
  console.log('could not establish a connection with redis. ' + err);
});
client.on('connect', function (err) {
  console.log('connected to redis successfully');
});

// Initialize middleware passing your client
// you can specify the way you save the sessions here
app.use(session({
  store: new RedisStore({client: client}),
  secret: 'some secret',
  resave: false,
  saveUninitialized: true
}));

app.get('/', (req, res) => {
  // that's how you get the session id from each request
  console.log('session id:', req.session.id)
  // the session will be automatically stored in Redis with the key prefix 'sess:'
  const sessionKey = `sess:${req.session.id}`;
  // let's see what is in there
  client.get(sessionKey, (err, data) => {
    console.log('session data in redis:', data)
  })
  res.status(200).send('OK');
})

app.listen(3000, () => {
  console.log('server running on port 3000')
})

/*
If you check your redis server with redis-cli, you will see that the entries are being added:
$ redis-cli --scan --pattern 'sess:*'
*/

有关详细信息,您可能需要阅读thisthis

希望这有帮助!