You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2020/05/13 09:08:03 UTC

[jena-site] branch master updated: Updates inline with PR#9 comments

This is an automated email from the ASF dual-hosted git repository.

andy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jena-site.git


The following commit(s) were added to refs/heads/master by this push:
     new 14c59f7  Updates inline with PR#9 comments
14c59f7 is described below

commit 14c59f744c18a83e106a0931a725f7046916b51d
Author: Andy Seaborne <an...@apache.org>
AuthorDate: Wed May 13 10:07:51 2020 +0100

    Updates inline with PR#9 comments
---
 source/documentation/fuseki2/fuseki-configuration.md | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/source/documentation/fuseki2/fuseki-configuration.md b/source/documentation/fuseki2/fuseki-configuration.md
index f7ef1fe..38fed78 100644
--- a/source/documentation/fuseki2/fuseki-configuration.md
+++ b/source/documentation/fuseki2/fuseki-configuration.md
@@ -127,8 +127,11 @@ An in-memory dataset, with data in the default graph taken from a local file.
 #### TDB2
 
     <#dataset> rdf:type      tdb:DatasetTDB2 ;
-        tdb:location "/some/path" ;
-        # this can also have unionDefaultGraph, etc.
+        tdb:location "DB2" ;
+        # Query timeout on this dataset (1s, 1000 milliseconds)
+        ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue "1000" ] ;
+        # Make the default graph be the union of all named graphs.
+        ## tdb:unionDefaultGraph true ;
          .
 
 #### Inference
@@ -150,12 +153,15 @@ You have to build up layers of dataset, inference model, and graph.
          # etc
          .
 
+where `http://example/someReasonerURLHere` is one of the URLs below.
 
 ##### Possible reasoners:
 
+Details are in [the main documentation for inference](/documentation/inference/).
+
 * **Generic Rule Reasoner**: `http://jena.hpl.hp.com/2003/GenericRuleReasoner`
   
-  The specific rule set and mode configuration can be set either be method calls to the created reasoner or though parameters in the configuration Model.
+  The specific rule set and mode configuration can be set through parameters in the configuration Model.
   
 * **Transitive Reasoner**: `http://jena.hpl.hp.com/2003/TransitiveReasoner`