This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-23
Channels
- # announcements (5)
- # aws (9)
- # babashka (60)
- # beginners (561)
- # calva (8)
- # cider (17)
- # clj-kondo (1)
- # cljsrn (12)
- # clojure (36)
- # clojure-dev (3)
- # clojure-europe (3)
- # clojure-france (10)
- # clojure-greece (8)
- # clojure-italy (6)
- # clojure-spec (3)
- # clojure-uk (6)
- # clojurescript (30)
- # community-development (2)
- # conjure (15)
- # datascript (24)
- # figwheel-main (49)
- # fulcro (29)
- # helix (72)
- # off-topic (20)
- # pathom (7)
- # rum (7)
- # shadow-cljs (23)
- # spacemacs (6)
- # sql (8)
- # timbre (1)
- # xtdb (10)
Is it wrong to invoke the parser in a resolve? What about multiple times?
I’m getting weird behavior and starting to think this is not how the parser is supposed to be used.
If I invoke the parser multiple times with pmap
rather than map
it works
Is it ok to bust the cache in the env if I want to invoke the parser from within a resolver?
yeah, calling from inside should be fine, but can lead to unexpected situations due to caching. the best you can do is try and see what works for the situation
i reset the atoms in the env (there were three of them pathom had) and now it works great
thanks!