Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

triplestore with revisions

I need to store RDF triples, while keeping track of modifications. Is there anything out there for this service? Alternatively, how would you keep track of revision while using a context-aware triplestore ?

Edit: please note that I don't need only the changeset. I also need to see the triples at any time in the past.

like image 244
Stefano Borini Avatar asked Jan 22 '10 10:01

Stefano Borini


3 Answers

I tried to address this sort of thing by storing additional triples describing who said what, when. But you need reification, named graphs, or quads which can ruin decidability.

like image 69
John Avatar answered Nov 20 '22 15:11

John


in addition to the other answers, also take a look at the Lensfield system (research software at the moment) developed by Jim Downing et al.. Lensfield will not only keep track of different versions of your data, but also of any scripts/transformation instructions you use to process your data and change your graph. In short, it's a mixture of version control, maven and make for semantic data. Maybe that helps.

like image 29
Nico Adams Avatar answered Nov 20 '22 15:11

Nico Adams


Take a look at this Semantic Overflow question on the same subject - semanticoverflow.com: How to implement semantic data versioning? - there's a variety of relevant links there

Generally versioning in Triple stores relies on either using named graphs and storing meta-data about each named graph in a separate graph or the Triple Store having some in-built mechanism for versioning such as the Talis platform (though that's not a context aware store so not suitable for you)

like image 21
RobV Avatar answered Nov 20 '22 15:11

RobV