Fork me on GitHub
#arachne
<
2016-05-01
>
luke18:05:50

Yep, @borkdude has it right. Datomic-style data (it can be DataScript, if you want it to be) is for machine production & consumption. Users don’t need to interact with it directly or even know that’s going on, unless they want to write their own modules or do what would be thought of as “metaprogramming” in other frameworks.

luke18:05:39

The benefit is that it’s much easier for machines to integrate with and manipulate in well-defined ways, and because the config DB has a schema, other modules can depend upon certain other config elements being present and use them as a contract to program against.

luke18:05:10

The cost is that module authors will need to provide a DSL or some other shim to give users an easy way to write config data by hand.

borkdude19:05:47

@luke: Sounds like a bit of a curve for module authors?

luke21:05:20

@borkdude: A bit - they’ll have to be comfortable with datalog. But it’s not hard to learn & arguably a good skill to have anyway.

borkdude21:05:41

ah datalog, yes I like