home » zplus/dokk.org.git
ID: a37c533c9a21a1716ff43b1497ed892207458035
26 lines — 909B — View raw


PREFIX :        <dokk:configuration:>
PREFIX fuseki:  <http://jena.apache.org/fuseki#>
PREFIX ja:      <http://jena.hpl.hp.com/2005/11/Assembler#>
PREFIX rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs:    <http://www.w3.org/2000/01/rdf-schema#>
PREFIX tdb1:    <http://jena.hpl.hp.com/2008/tdb#>
PREFIX tdb2:    <http://jena.apache.org/2016/tdb#>

:endpoint
    # Without a name: /endpoint?query=
    # With a name:    /endpoint/name/?query=
    # fuseki:name "query" ;
    fuseki:operation fuseki:query .

:dataset
    rdf:type tdb2:DatasetTDB2 ;
    tdb2:location "/home/fuseki/fuseki_base/databases/dokk.tdb2" ;

    # Query timeout on this dataset (1s, 1000 milliseconds)
    ja:context [ ja:cxtName "arq:queryTimeout" ;  ja:cxtValue "10000" ] .

:service
    a               fuseki:Service ;
    fuseki:name     "dokk" ;
    fuseki:dataset  :dataset ;
    fuseki:endpoint :endpoint .