express-session
및 connect-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:*'
*/
더 자세한 정보는 this 및 this을 읽을 수 있습니다.
희망이 도움이됩니다.
지난 2 일 동안 이걸 시도했지만받지 못했습니다. 덕분에 당신의 도움 – Jan