forked from opencaesar/metrology-vocabularies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.fuseki.ttl
27 lines (24 loc) · 1.06 KB
/
.fuseki.ttl
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
@prefix fu: <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 tdb2: <http://jena.apache.org/2016/tdb#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
[] rdf:type fu:Server .
<#service> rdf:type fu:Service;
fu:name "metrology-vocabularies";
fu:dataset <#dataset> ;
fu:serviceQuery "sparql" ;
fu:serviceQuery "query" ;
fu:serviceUpdate "update" ;
fu:serviceUpload "upload" ;
fu:serviceReadWriteGraphStore "data" ;
fu:serviceReadGraphStore "get" ;
.
<#dataset> rdf:type tdb2:DatasetTDB ;
tdb2: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.
tdb2:unionDefaultGraph true ;
.