-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig-example.json
More file actions
48 lines (43 loc) · 1.98 KB
/
config-example.json
File metadata and controls
48 lines (43 loc) · 1.98 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"title": "My Linked Data Fragments server",
"datasourcetypes": {
"HdtDatasource" : "org.linkeddatafragments.datasource.hdt.HdtDataSourceType",
"JenaTDBDatasource" : "org.linkeddatafragments.datasource.tdb.JenaTDBDataSourceType",
"BlazegraphDataSource" : "org.linkeddatafragments.datasource.blazegraph.BlazegraphDataSourceType"
},
"datasources": {
"watdiv": {
"title": "WatDiv",
"type": "BlazegraphDataSource",
"description": "WatDiv benchmark dataset with a Blazegraph back-end",
"settings": {
"com.bigdata.rdf.sail.truthMaintenance": "false",
"com.bigdata.rdf.store.AbstractTripleStore.triplesMode": "true",
"com.bigdata.rdf.store.AbstractTripleStore.axiomsClass": "com.bigdata.rdf.axioms.NoAxioms",
"com.bigdata.rdf.store.AbstractTripleStore.justify": "false",
"com.bigdata.rdf.store.AbstractTripleStore.statementIdentifiers": "false",
"com.bigdata.rdf.store.AbstractTripleStore.textIndex": "false",
"com.bigdata.journal.AbstractJournal.create": "false",
// used for DiskRW mode
"com.bigdata.journal.AbstractJournal.file": "data/watdiv.10M.jnl",
// used for MemStore mode
"file": "data/watdiv.10M.nt",
// chose between any of the following two modes
"com.bigdata.journal.AbstractJournal.bufferMode":
"DiskRW"
//"MemStore"
}
},
"prefixes": {
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"dc": "http://purl.org/dc/terms/",
"foaf": "http://xmlns.com/foaf/0.1/",
"dbpedia": "http://dbpedia.org/resource/",
"dbpedia-owl": "http://dbpedia.org/ontology/",
"dbpprop": "http://dbpedia.org/property/",
"hydra": "http://www.w3.org/ns/hydra/core#",
"void": "http://rdfs.org/ns/void#"
}
}