-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ttl
More file actions
33 lines (29 loc) · 1.18 KB
/
config.ttl
File metadata and controls
33 lines (29 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@prefix fuseki: <http://jena.apache.org/fuseki#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix : <#> .
#[] rdf:type fuseki: Server .
<#service1> a fuseki:Service ;
fuseki:name "n4o" ; # http://host:port/n4o
fuseki:endpoint [ # SPARQL query
fuseki:operation fuseki:query
] ;
fuseki:endpoint [ # SPARQL update
fuseki:operation fuseki:update
] ;
fuseki:endpoint [ # SPARQL Graph Store Protocol (read)
fuseki:operation fuseki:gsp-r
] ;
fuseki:endpoint [ # SPARQL Graph Store Protocol (read and write)
fuseki:operation fuseki:gsp-rw
] ;
fuseki:dataset <#dataset>
.
<#dataset> a tdb:DatasetTDB ;
tdb:unionDefaultGraph true ;
tdb:location "/fuseki/databases/n4o" ;
# Query timeout on this dataset (10s, 10000 milliseconds)
ja:context [ ja:cxtName "arq:queryTimeout" ; ja:cxtValue "10000" ]
.