1
Ask HN: Anyone Using RethinkDB in Production?
RethinkDB[0] looks like a "too good to be true" type of database. Anyone using it in production? What is your experience like? What are the pros and cons?
[0] https://rethinkdb.com
[0] https://rethinkdb.com
Will there be some cryptocurrency integration with Twitter? That could give cryptocurrency some sort of legitimacy because lot of politicians and government organisations use Twitter as a means of communication.
(node A.uuid) -- [relation AB.uuid] --> (node B.uuid)
And I store history of a node, say `node A`, as follows: (node A.uuid) -- [has:{datetime,session}] --> (node A.history)
(node A.history) -- [contains:{datetime, session, relation AB.x.uuid, to:node B.y.uuid}] --> (node A.n.uuid)
:
:
(node A.history) -- [contains:{datetime, session, relation AB.p.uuid, to:node B.q.uuid}] --> (node A.0.uuid)
Is this a good approach to store history of a node in a graph database? What are the better ways to do this?Also, how do I store the history of the relation/edge `relation AB`? Is it same as the node?