What is a good session store for a single-host Node.js production app?
I'm using Node's Express w/ Connect middleware. Connect's memory session store isn't fit for production: Warning: connection.session() MemoryStore is not designed for a production environment, as it will leak memory, and obviously only work within a single process. For larger deployments, mongo or redis makes sense. But what is a good solution for a single-host app in production? balupton Spent the day looking into this. Here are the options I've discovered. Requests/second are performed via ab -n 100000 -c 1 http://127.0.0.1:9778/ on my local machine. no sessions - fast (438 req/sec)