Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Copyedit README and TempTriples #197

Merged
merged 1 commit into from
Sep 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/**
* Interface for TempTriples implementation.
*
* This is a dynamic interface. For static(read-only) behaviour have a look at
* This is a dynamic interface. For static (read-only) behaviour have a look at
* {@link Triples}
*
*/
Expand Down
8 changes: 4 additions & 4 deletions hdt-jena/README
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
HDT-Jena

This is a wrapper to build a Read-Only Jena Model on top of an HDT file. This allows for example using Jena's ARQ Query Engine to issue SPARQL queries against an RDF file. HDT-Jena depends on the HDT-Java and Jena Libraries.
This is a wrapper to build a read-only Jena Model on top of an HDT file. This allows for example using Jena's ARQ Query Engine to issue SPARQL queries against an RDF file. HDT-Jena depends on the HDT-Java and Jena Libraries.

######### Commandline scenario example #############

Expand Down Expand Up @@ -31,10 +31,10 @@ HDTGraph graph = new HDTGraph(hdt);
// Create Jena Model on top of HDT.
Model model = ModelFactory.createModelForGraph(graph);

// Use Jena Model as Read-Only data storage, e.g. Using Jena ARQ for SPARQL.
// Use Jena Model as read-only data storage, e.g. using Jena ARQ for SPARQL.

########## Create SPARQL Endpoing on top of one or more HDT files using Fuseki #########
# You need to create a fuseki config file specifying which HDT files you want to publish. You need to specify one for the default graph and zero or more named graphs with additional HDT files. You also need to ask fuseki to load the HDT Assembler class:
########## Create SPARQL Endpoint on top of one or more HDT files using Fuseki #########
# You need to create a Fuseki config file specifying which HDT files you want to publish. You need to specify one for the default graph and zero or more named graphs with additional HDT files. You also need to ask Fuseki to load the HDT Assembler class:

[] ja:loadClass "org.rdfhdt.hdtjena.HDTGraphAssembler" .

Expand Down