This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-08-07
Channels
- # aleph (4)
- # announcements (7)
- # arachne (1)
- # beginners (138)
- # calva (5)
- # cider (1)
- # clara (14)
- # clj-kondo (1)
- # cljsrn (2)
- # clojars (4)
- # clojure (247)
- # clojure-dev (33)
- # clojure-europe (3)
- # clojure-italy (71)
- # clojure-losangeles (6)
- # clojure-romania (6)
- # clojure-spain (11)
- # clojure-uk (17)
- # clojurescript (95)
- # core-async (2)
- # cursive (19)
- # datomic (7)
- # duct (27)
- # figwheel (1)
- # graalvm (22)
- # juxt (7)
- # kaocha (8)
- # leiningen (1)
- # luminus (7)
- # lumo (4)
- # off-topic (38)
- # reagent (4)
- # reitit (11)
- # shadow-cljs (30)
- # spacemacs (42)
- # tools-deps (103)
- # xtdb (5)
The datomic website says datomic requires jdk 7 or 8. Still true, or is website out of date? https://docs.datomic.com/on-prem/get-datomic.html
Is there a performance / speed benefit when querying on attributes that reference a :db/ident
rather than a keyword attribute value? For example:
; schema
[
; installed :db/ident
{:db/ident :season/winter}
; a reference attribute to point to the :season/winter :db/ident
{:db/ident :year/season-ref :db/cardinality :db.cardinality/one :db/valueType :db.type/ref}
; a generic keyword attribute
{:db/ident :year/season-kw :db/cardinality :db.cardinality/one :db/valueType :db.type/keyword}
]