I cannot find a list of session store implementations that work with Connect in node.js. Connect-Redis works great, but requires Redis and I'd rather avoid that dependency. Sesame/nStore would be ideal but no longer appears to work at all. Sesame/supermarket requires fiddling with node-waf in order to work, and I'd like to avoid that as well.
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.
|
|
For a quick and dirty currently functional way to save sessions I'd recommend using dirty. It's just a key value store, but it doesn't take much to hook up to connect sessions. |
|||
|
|
|
Connect comes with a default in-memory session store. Dirty lets you to implement a in-memory session store backed up to disk. It won't allow you to save memory space, it merely adds persistence to your store, and I doubt a persistent session store has much use. Why do you need a persistent session store? What requirements to a session store are not implemented by the default session store provided by connect? Is it only persistence, or you have something else in mind? |
|||
|