This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-02-08
Channels
- # announcements (2)
- # aws (1)
- # beginners (134)
- # calva (26)
- # cider (48)
- # cljdoc (41)
- # cljs-dev (12)
- # clojure (178)
- # clojure-brasil (1)
- # clojure-europe (16)
- # clojure-italy (30)
- # clojure-nl (13)
- # clojure-spec (118)
- # clojure-uk (81)
- # clojurescript (209)
- # community-development (77)
- # cursive (7)
- # datomic (23)
- # duct (6)
- # emacs (15)
- # events (2)
- # figwheel (13)
- # figwheel-main (18)
- # fulcro (4)
- # jackdaw (4)
- # jobs (6)
- # jobs-discuss (6)
- # kaocha (2)
- # lein-figwheel (3)
- # off-topic (4)
- # other-languages (22)
- # pathom (2)
- # pedestal (9)
- # perun (10)
- # portkey (1)
- # re-frame (41)
- # reagent (6)
- # reitit (4)
- # remote-jobs (1)
- # ring-swagger (6)
- # rum (5)
- # shadow-cljs (300)
- # sql (3)
- # test-check (6)
- # testing (7)
- # vim (1)
- # yada (9)
You can ping me or ship them into <mailto:[email protected]|[email protected]>. Probably best to use the e-mail as it would generate a case that the whole team could see.
I'm trying to use REBL with datomic, but the navigation into :db/id
just shows an integer. I'm using com.datomic/client-cloud {:mvn/version "0.8.71"}
. Am I missing something?
If you need an email entity :email/address :email/type
and a generic attribute to reference it, what would you call it? :email/emails
?
Using delete-database
on datomic cloud does not seem to remove the datoms, is this normal? Shouldn't it?
If you mean datoms as reported in the dashboard under the Datoms metric, they will be cleaned up, but not immediately.
Actually I meant more the data that seems to remain in DynamoDB that is associated to the deleted database
is there any way to show the “query plan” in datomic cloud? It would be nice to see how the query will be executed against the indexes if only to get a better sense of how to put queries together. I may be thinking about this the wrong way, but I’ve always found the “explain” functionality of traditional RDBMSs to be quite useful in practice.
There was a third party query explainer. Third party was possible because the optimizations are very simple
cool thanks. I a third party one here: https://github.com/dwhjames/datomic-q-explain which should be simple enough to adapt for the client api. appreciate the help