Node.js Express sessions using connect-redis with Unix Domain Sockets
问题 I am trying to utilize a Redis-based session store using connect-redis , communicating over UNIX Domain Sockets. There is this: Redis Connection via socket on Node.js but the answer is specific to node-redis , and not the connect-redis for Redis session stores. I thought it would be easy to get things going by creating my own node-redis object using and passing in a 'client' parameter, as described in the 'Options' section of the README here: https://github.com/visionmedia/connect-redis But,