This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-22
Channels
- # announcements (1)
- # beginners (179)
- # boot (8)
- # calva (3)
- # cider (4)
- # clara (3)
- # cljdoc (31)
- # clojure (9)
- # clojure-austin (1)
- # clojure-chicago (5)
- # clojure-dev (19)
- # clojure-nl (2)
- # clojure-uk (1)
- # clojurescript (13)
- # core-matrix (1)
- # cursive (86)
- # datascript (2)
- # datomic (13)
- # emacs (3)
- # figwheel-main (1)
- # fulcro (66)
- # off-topic (250)
- # pathom (7)
- # re-frame (19)
- # reitit (5)
- # sql (37)
- # uncomplicate (5)
What happens when the year-long datomic starter edition expires?
What method is recommended for handling the connection object (d/connect db-uri)
? do you pass it as an arg to every function that does a query or transaction?
https://docs.datomic.com/on-prem/best-practices.html#consistent-db-value-for-unit-of-work
prefer making a DB once and passing as a value to an entrypoint or family of functions
E.g. in an http-like request handler, it makes sense for it to get a conn and db once, then pass that db around