immutant

http://immutant.org Note: dev discussion happens in #immutant on FreeNode IRC.
2017-06-03T17:00:25.377087Z

How do you specify the session store with immutant? The ring wrap-session middleware takes a :store key but it does not look like immutant does.

2017-06-03T19:55:51.006979Z

@juliobarros If you are using the Immutant session middleware, you can't change the store - it uses the underlying in-memory session store, basically

2017-06-03T19:56:04.007741Z

if you want a cookie store, you should use the ring middleware instead

2017-06-03T20:24:24.102027Z

Thanks @tcrawley, yeah, I want to use my own db/cache store. I’m using a luminus template from a few months ago. It created middleware that used immutants wrap-session. If I understand you correctly, I can use rings wrap-session instead. I’ll give that a try. Thanks.

2017-06-03T20:31:10.124797Z

@juliobarros Yep, just use ring's middleware instead. And my pleasure!