Fork me on GitHub
#datomic
<
2017-08-29
>
uwo19:08:40

is there anything that logs when an indexing job requested by d/request-index finishes?

marshall19:08:05

@uwo you can look for :event :update/create-index with :phase :end

wilkerlucio19:08:00

hello people, question: I'm trying to understand better the trade-offs between using enums vs keywords, I found this old post: https://groups.google.com/forum/#!topic/datomic/KI-kbOsQQbU

wilkerlucio19:08:55

in terms of search performance, is this relevant? personally it seems that using keywords is simpler than enums, the search performance is significant between those?

favila20:08:35

comparing numbers likely faster than comparing an object with two string fields?

favila20:08:51

I doubt it matters in practice

favila20:08:10

use enums if you want a closed, enumerable set; keywords if you want open

favila20:08:44

e.g. if you typo a keyword type, no error, silently accepted; typoed enum will error