This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-02-08
Channels
- # aleph (2)
- # aws (1)
- # beginners (172)
- # boot (15)
- # cider (17)
- # clara (7)
- # cljs-dev (22)
- # cljsrn (12)
- # clojars (3)
- # clojure (110)
- # clojure-dev (5)
- # clojure-italy (13)
- # clojure-sanfrancisco (5)
- # clojure-spec (3)
- # clojure-uk (31)
- # clojurescript (110)
- # community-development (2)
- # cursive (16)
- # datomic (19)
- # docs (4)
- # emacs (49)
- # fulcro (24)
- # jobs (5)
- # keechma (2)
- # lein-figwheel (41)
- # leiningen (10)
- # luminus (4)
- # lumo (24)
- # mount (24)
- # numerical-computing (1)
- # off-topic (16)
- # om (4)
- # onyx (6)
- # parinfer (9)
- # planck (8)
- # re-frame (7)
- # reagent (6)
- # shadow-cljs (125)
- # sql (5)
- # test-check (9)
- # unrepl (6)
- # yada (5)
Hi, in https://github.com/Day8/re-frame-trace/blob/master/docs/HyperlinkedInformation/UnchangedLayer2.md . It says that if a layer 3
subscription takes value from a layer 2
subscription and if the layer 2
subscription returns the same value (using =
to compare), the layer 3
subscription will not run.
Will a layer 3
subscription runs if it takes value from another(or another two) layer 3
subscription(s) and if the second layer 3
runs but returns the same value(using =
to compare)?
@cmal subscriptions don;t rerun unless their inputs test not =
to the previous value. Which matches intuition, right? If none of the inputs change the computation will be the same, so don't even bother to run it.
hi dear re-framers
as I promised I made a blog post detailing what I did for prerendering my app with chrome-headless
https://medium.com/@joelsanchezclj/prerendering-a-re-frame-app-with-chrome-headless-bb875de31fd0
please tell me about any mistake or confusing thing because I am a coder, not a writer 🙂