Fork me on GitHub
#untangled
<
2016-03-25
>
polymeris00:03:40

If you figure or any alternative to datomic, @tbrooke, let us know, please.

folcon00:03:22

@tony.kay: yep :)… btw, any idea about using recursive queries cleanly? By default it appears to leave dangling unordered lists...

tony.kay00:03:53

what do you mean dangling?

tony.kay00:03:19

the order is defined by the data

folcon01:03:54

yes, sorry

folcon01:03:03

my solution was to modify the defui Person adding a predicate to test that the person/mate was the correct shape, just wondering if there’s anything more elegant simple_smile...

tony.kay15:03:31

@folcon: not that I can think of...you have to do something to detect the loop, and the behavior of db->tree is to return an ident when it hits something it has already seen.

tony.kay15:03:05

In non-loop cases (much more common) you'd just get nil, which is easier to pun into shape (when mate ...)

folcon15:03:15

thanks, I’ll have to think about it some more and see what works over time simple_smile...