triplestore

Which Triplestore for rapid semantic web development?

老子叫甜甜 提交于 2019-12-02 17:20:36
Ease of installation/use is the most important factor here - not performance. Small is OK as large datasets are not expected. I'd also recommend sesame , its lightweight, pretty easy to install, and provides good performance for small datasets. Query performance is far better with Sesame 1.2.x than Sesame 2.x because of the addition of context support to the 2.x series. I've tested sesame installation/deployment with tomcat, resin, and jetty, and it worked easily with all of them. I don't recommend the bindings to RDBMS components such as Postgres or MySQL, at least in the 1.x series,

SPARQL: Delete instance and all of its properties with linked subproperties

守給你的承諾、 提交于 2019-12-02 07:22:24
问题 I have a question about the deletion of elements from a triplestore (in my case a Virtuoso) using SPARQL. I have stored the following elements in a graph: @prefix xy: <http://purl.oclc.org/xy/xy#> . @prefix ssn: <http://purl.oclc.org/NET/ssnx/ssn#> . <point> a xy:Point ; xy:value "10" ; ssn:observationResultTime <Rs_b8d4ae44-6083-4140-b4e3-11fcf38a53c8> ; ssn:observationSamplingTime <St_b8d4ae44-6083-4140-b4e3-11fcf38a53c8> ; ssn:observedBy <SensorID-b8d4ae44-6083-4140-b4e3-11fcf38a53c8> . As

I am trying to get list of all the authors who have had more than 3 piece of work - DBpedia Sparql

家住魔仙堡 提交于 2019-12-02 07:13:40
问题 I am trying to get list of all the authors who have had 3 or more piece of work done (in DBpedia). my example can be run on : http://dbpedia.org/sparql base code select (count(?work) as ?totalWork), ?author Where { ?work dbo:author ?author. } GROUP BY ?author I get each authors total amount of piece of work done. But when I try to filter to show only list of author that have more than 3 piece of work. I get error: I tried HAVING keyword or using FILTER keyword. Using Filter select (count(

SPARQL: Delete instance and all of its properties with linked subproperties

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-02 05:21:25
I have a question about the deletion of elements from a triplestore (in my case a Virtuoso) using SPARQL. I have stored the following elements in a graph: @prefix xy: <http://purl.oclc.org/xy/xy#> . @prefix ssn: <http://purl.oclc.org/NET/ssnx/ssn#> . <point> a xy:Point ; xy:value "10" ; ssn:observationResultTime <Rs_b8d4ae44-6083-4140-b4e3-11fcf38a53c8> ; ssn:observationSamplingTime <St_b8d4ae44-6083-4140-b4e3-11fcf38a53c8> ; ssn:observedBy <SensorID-b8d4ae44-6083-4140-b4e3-11fcf38a53c8> . As you can see I have one xy:Point, which has some properties. In my database I have stored dozens of

Graph databases vs. triple stores

梦想的初衷 提交于 2019-11-29 20:58:16
What's currently the best choice to persist graph-like structures? Graph databases (e.g. Neo4j ) or RDF triple stores (e.g. Virtuoso )? For example, we have the following use case: the weakly connected graph (similar to the one of scholarly papers in a collection) with nearly 10M nodes; quite rare updates; critical operations: retrieving particular sub-graphs, updating nodes in a given sub-graph, re-computing link analysis measures (e.g. HITS or PageRank) after updating some nodes. Providing the standard API to query the data for third party applications (a la Facebook's or Twitter's) is

How are RDF and RDFS related?

柔情痞子 提交于 2019-11-29 01:50:30
问题 I've been reading about Semantic Web technologies such as RDF/RDFS and "ontology", but was wondering how each of these are related? At the moment the terms all seem interchangeable, or I'm not understanding a fundamental concept here. 回答1: Basic definitions RDF is a concept. RDF is also a NAME of a vocabulary. RDFS is a NAME of another vocabulary. "ontology" is just a SYNONYM of the term "vocabulary". Explanations RDF is a concept RDF is a concept or a way of describing things. The concept of

Graph databases vs. triple stores

时光怂恿深爱的人放手 提交于 2019-11-28 17:10:20
问题 What's currently the best choice to persist graph-like structures? Graph databases (e.g. Neo4j) or RDF triple stores (e.g. Virtuoso)? For example, we have the following use case: the weakly connected graph (similar to the one of scholarly papers in a collection) with nearly 10M nodes; quite rare updates; critical operations: retrieving particular sub-graphs, updating nodes in a given sub-graph, re-computing link analysis measures (e.g. HITS or PageRank) after updating some nodes. Providing