rdf

2020-03-20T11:49:21.050Z

> joined #rdf along with 13 others. Wow, it’s like RDF became popular all of a sudden!

akond 2020-03-20T11:53:11.050400Z

it is popular (among 65 people).

2020-03-20T11:53:38.050700Z

There were a lot less people yesterday tho! 🙂

2020-03-20T12:07:25.052300Z

Out of curiosity, How many people here besides @rickmoynihan are using RDF in production, or something that supports something in production?

joelkuiper 2020-03-24T19:25:11.062400Z

We do for https://covid-search.doctorevidence.com/

1👍
joelkuiper 2020-03-24T19:25:26.062600Z

backing ontology is RDF via Jena/Fuseki and YeSPARQL

2020-03-20T12:38:05.052900Z

Thanks @ivan.kanak_clojurians, that was a good talk.

refset 2020-03-20T12:50:11.053400Z

We use a couple of RDF datasets to benchmark #crux against other DBs: https://dsg.uwaterloo.ca/watdiv/ http://swat.cse.lehigh.edu/projects/lubm/ (the bench runs nightly)

1👍
2020-03-20T12:53:14.055200Z

Yeah, you kind of need both of these at the same time, so putting one or the other 'first' seems a little like saying 'right foot first' vs. 'left-foot-first'. 🙂

2020-03-20T12:54:21.056600Z

I really love Clojure's map abstraction, and a lot of what motivated the IGraph project was a desire to extend a similar abstraction to the expression of relationships.

2020-03-20T13:17:25.061500Z

Maps are great but have their limits; analagous to structured databases vs relational. At some point you realise you’re building a database with your datastructures, e.g. when you start computing lookup tables, and having lists of denormalised/sorted keys etc; which you then need bespoke functions to handle. Rich Hickey: Every class is an island. Rick Moynihan: Your datastructure’s become islands too 🙂 At that point you want a query language; and graphs are super flexible In all fairness Rich has known this since pre clojure 1.0, and he spoke a lot about it back in the early days of clojure… A lot of that thinking I think manifested itself into datomic.

3👍