-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgraphdb-repo-config-template.ttl
55 lines (47 loc) · 2.19 KB
/
graphdb-repo-config-template.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# RDF4J configuration template for a GraphDB repository
#
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix rep: <http://www.openrdf.org/config/repository#>.
@prefix sr: <http://www.openrdf.org/config/repository/sail#>.
@prefix sail: <http://www.openrdf.org/config/sail#>.
@prefix graphdb: <http://www.ontotext.com/trree/graphdb#>.
[] a rep:Repository ;
rep:repositoryID "{name}" ;
rep:repositoryImpl [
rep:repositoryType "graphdb:SailRepository" ;
sr:sailImpl [
sail:sailType "graphdb:Sail" ;
graphdb:owlim-license "" ;
graphdb:base-URL "https://zorro-project.nl/" ;
graphdb:defaultNS "" ;
graphdb:entity-index-size "200000" ;
graphdb:entity-id-size "32" ;
graphdb:imports "" ;
graphdb:repository-type "file-repository" ;
graphdb:ruleset "rdfs-plus-optimized" ;
graphdb:storage-folder "storage" ;
graphdb:enable-context-index "false" ;
graphdb:cache-memory "80m" ;
graphdb:tuple-index-memory "80m" ;
graphdb:enablePredicateList "false" ;
graphdb:predicate-memory "0%" ;
graphdb:fts-memory "0%" ;
graphdb:ftsIndexPolicy "never" ;
graphdb:ftsLiteralsOnly "true" ;
graphdb:in-memory-literal-properties "false" ;
graphdb:enable-literal-index "true" ;
graphdb:index-compression-ratio "-1" ;
graphdb:check-for-inconsistencies "false" ;
graphdb:disable-sameAs "false" ;
graphdb:enable-optimization "true" ;
graphdb:transaction-mode "safe" ;
graphdb:transaction-isolation "true" ;
graphdb:query-timeout "0" ;
graphdb:query-limit-results "0" ;
graphdb:throw-QueryEvaluationException-on-timeout "false" ;
graphdb:useShutdownHooks "true" ;
graphdb:read-only "false" ;
graphdb:nonInterpretablePredicates "http://www.w3.org/2000/01/rdf-schema#label;http://www.w3.org/1999/02/22-rdf-syntax-ns#type;http://www.ontotext.com/owlim/ces#gazetteerConfig;http://www.ontotext.com/owlim/ces#metadataConfig" ;
]
].