Reputation: 29
I am trying to try out storing N-triple and querying them. What is the simplest way to store N-triple in triple store or rather the simplest server do that.
I would highly appreciate help in this.
Upvotes: 2
Views: 718
Reputation: 2193
Try Fuseki if you would prefer using a web based query form or the ability to query your data like any SPARQL endpoint via http.
For more details see my answer on this question: Where do I test my queries for my RDF written in SPARQL
Upvotes: 1
Reputation: 8878
Try Apache Jena, and its TDB database:
$ tdbloader --loc mystore file.nt
$ tdbquery --loc mystore "select * {?s ?p ?o}" # direct query
$ tdbquery --loc mystore --query myquery.sparql # from a file
Upvotes: 2