I\'m (almost) successfully using Node.js with Express and Redis to handle sessions.
The problem I\'m having is that the session is not kept when I use res.redirect
res.redirect
Did you try with different browsers ? Are you keeping the same session id between page redirects ?
You could add req.session.cookie.expires = false; before redirecting...
req.session.cookie.expires = false;