Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using nodejs (expressjs) hosted on heroku.

Sessions are stored in redis (Redistogo plugin for heroku):

RedisStore = require('connect-redis')(express)
app.use express.session
      secret: process.env.CLIENT_SECRET
      cookie: { maxAge: 604800000 }
      store: new RedisStore {client: redis}

After user logged in I store his info in req.session

after_user_logged_id = (req, user)->    
  req.session.current_user =
    id: user._id
    name: user.name

I need to restart server and clean all sessions: logout all users to force them login one more time. How should I do this ? Restarting redis plugin doesn't help.

share|improve this question
1  
You could implement it yourself, in code. Might be a good feature to have, if you need to upgrade/change something in the session in the future. What I suggest is that you check for the existence of some property, and otherwise destroy the session, forcing the user to log in, at which point you set the property. Something like: if(session.version < 1) { session.destroy() }. – Linus G Thiel Feb 5 at 13:42
should I put it in app.configure ()-> app.use (req, res, next)-> session_logic ? – Oleg Dats Feb 5 at 13:50
1  
Yes, you can put it there, and you probably also want to res.redirect() to your login page. – Linus G Thiel Feb 5 at 13:52

2 Answers

up vote 1 down vote accepted

redis.flushdb() may be a bit extreme if you end up storing something else in redis. You just need to delete all the "sess:*" keys. Unfortunately, there is no del *, so you can use something like this:

redis.keys("sess:*", function(err, key) {
  redis.del(key, function(err) {
  });
});
share|improve this answer

Code to clean all redis sessions:

RedisStore = require('connect-redis')(express)
rtg   = require('url').parse process.env.REDISTOGO_URL
redis = require('redis').createClient rtg.port, rtg.hostname  
redis.auth rtg.auth.split(':')[1] # auth 1st part is username and 2nd is password separated by ":"
  try
    console.log "clean sessions"
    redis.flushdb()
  catch err
    console.log "error:", err
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.