Adjustable, versioned graph database

前端 未结 3 1820
萌比男神i
萌比男神i 2020-12-11 05:22

I\'m currently working on a project where I use natural language processing to extract emotions from text to correlate them with contextual information.

Definition o

3条回答
  •  -上瘾入骨i
    2020-12-11 05:59

    There's a database called Datomic by Rich Hickey (of Clojure fame) that stores facts over time. Every entry in the database is a fact with a timestamp, append-only as in Event Sourcing.

    These facts can be queried with a relational/logical language ala Datalog (remiscent of Prolog). Please see This post by kisai for a quick overview. It has been used for querying graphs with some success in the past: Using Datomic as a Graph Database.

    While I have no experience with Datomic, it does seem to be quite suitable for your particular problem.

提交回复
热议问题