Fork me on GitHub
#datomic
<
2019-06-05
>
souenzzo18:06:08

Is possible to overwrite datomic internal clock? on-prem

marshall18:06:26

yes, but only under specific circumstances

👍 4
PB20:06:29

What is the upper limit of how many datoms datomic can handle?

favila20:06:05

there are some harder entity limits

favila20:06:31

2^40 "minted" entity ids, something like that

Daouda20:06:22

hey Folks, how can i achieve something like that in datomic query: [((complement contains? ?type) ?event-types)]? ?event-typesis a vector.

favila20:06:28

do you mean ((complement contains?) ?event-types ?type)?

favila20:06:06

sets are usually faster:

favila20:06:34

(not [(contains? ?legal-vals ?val)] in datomic

favila20:06:55

but you can also test each one

favila20:06:33

(not [(identity ?legal-vals) [?val ...]])

favila20:06:59

or (ground [1 2 3]) instead of identity if you have a literal of vals

Daouda20:06:21

sorry for taking long to answer, i need to exclude result matching with ?event-types

Daouda13:06:08

Thank you very much @U09R86PA4, you’ve helped me a lot with your suggestions 🙂