This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-06-03
Channels
- # beginners (446)
- # boot (16)
- # cljs-dev (2)
- # cljsrn (30)
- # clojars (2)
- # clojure (143)
- # clojure-finland (1)
- # clojure-greece (1)
- # clojure-nl (1)
- # clojure-russia (2)
- # clojure-spec (20)
- # clojure-uk (7)
- # clojurescript (167)
- # code-reviews (1)
- # community-development (12)
- # core-async (27)
- # cursive (3)
- # data-science (9)
- # datascript (2)
- # emacs (1)
- # graphql (46)
- # immutant (5)
- # jobs (2)
- # leiningen (1)
- # luminus (1)
- # lumo (76)
- # off-topic (79)
- # perun (2)
- # protorepl (33)
- # re-frame (21)
- # reagent (62)
- # ring-swagger (1)
- # rum (18)
- # spacemacs (6)
- # specter (4)
- # test-check (4)
- # unrepl (9)
- # untangled (2)
- # vim (4)
- # yada (1)
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.
@juliobarros If you are using the Immutant session middleware, you can't change the store - it uses the underlying in-memory session store, basically
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.
@juliobarros Yep, just use ring's middleware instead. And my pleasure!