Skip to content

Commit

Permalink
[Upd] Update test RDF4J repository configuration to use the currently…
Browse files Browse the repository at this point in the history
… supported vocabulary.
  • Loading branch information
ledsoft committed Jun 24, 2024
1 parent b65f74e commit cdb6bc4
Showing 1 changed file with 15 additions and 26 deletions.
41 changes: 15 additions & 26 deletions src/test/resources/rdf4j-memory-rdfs.ttl
Original file line number Diff line number Diff line change
@@ -1,29 +1,18 @@
@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 cgqi: <http://www.openrdf.org/config/sail/customGraphQueryInferencer#>.
@prefix spin: <http://www.openrdf.org/config/sail/spin#>.
@prefix ms: <http://www.openrdf.org/config/sail/memory#>.
@prefix sp: <http://spinrdf.org/sp#>.
@prefix sb: <http://www.openrdf.org/config/sail/base#>.
@prefix config: <tag:rdf4j.org,2023:config/>.


[] a rep:Repository ;
rep:repositoryID "mem:termit" ;
[] a config:Repository ;
config:rep.id "mem:termit" ;
rdfs:label "Memory store with RDFS support" ;
rep:repositoryImpl [
rep:repositoryType "openrdf:SailRepository" ;
sr:sailImpl [
sail:sailType "rdf4j:SchemaCachingRDFSInferencer" ;
sail:delegate [
sail:sailType "openrdf:DedupingInferencer" ;
sail:delegate [
sail:sailType "openrdf:MemoryStore" ;
sail:iterationCacheSyncThreshold "10000";
ms:persist false ;
sb:evaluationStrategyFactory "org.eclipse.rdf4j.query.algebra.evaluation.impl.StrictEvaluationStrategyFactory"
]
]
]
].
config:rep.impl [
config:rep.type "openrdf:SailRepository" ;
config:sail.impl [
config:sail.type "rdf4j:SchemaCachingRDFSInferencer";
config:delegate [
config:sail.type "openrdf:MemoryStore" ;
config:sail.iterationCacheSyncThreshold "10000";
config:mem.persist false;
config:sail.evaluationStrategyFactory "org.eclipse.rdf4j.query.algebra.evaluation.impl.StrictEvaluationStrategyFactory"
];
]
].

0 comments on commit cdb6bc4

Please sign in to comment.