Fork me on GitHub
#datomic
<
2017-07-19
>
andrei14:07:40

Is there a good practice around queries that return a lot of data? Querries that one would use pagination in a sql db

Lambda/Sierra14:07:11

@wistb Datomic has no built-in support for transactions that span multiple databases.

souenzzo19:07:02

Is possible to do recursive queries? category(root) has :category/subcategory or :category/items :category/subcategory can be another :category/subcategory or :category/items

robert-stuttaford19:07:41

@souenzzo look at the rules examples in the mbrainz sample repo. they do stuff like this i think

souenzzo19:07:20

I tryied some mutual recursion/simple recursion on rules, but no erros and no result... 😞

potetm23:07:47

I'm curious if anyone's ever tried using datomic for coordination (e.g. as a ZooKeeper replacement)

potetm23:07:18

On the surface it seems like basically all the semantics you need are there (minus callbacks, which you could replicate with polling or the tx queue).

potetm23:07:28

The only thing that's obviously missing is ephemeral nodes. But I'm pretty sure you could ape that with a heartbeat as well.