Cannot create LMDB store from server REST API (or workbench UI) #4115
-
Hi, the RDF4J 4.1.0 release claims "LMDB Store is available in the server and workbench". While testing the LMDB store from scala/java api seems to work as expected, the workbench UI and the server REST API seems to still have some problems.
@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 ms: <http://www.openrdf.org/config/sail/memory#>.
[] a rep:Repository ;
rep:repositoryID "test-lmdb" ;
rdfs:label "test LMDB store" ;
rep:repositoryImpl [
rep:repositoryType "openrdf:SailRepository" ;
sr:sailImpl [
sail:sailType "openrdf:LmdbStore" ;
]
]. I suppose I'm doing something wrong here, can anyone help me to create a working minimal configuration? Thank you in advance for any siggestions, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@kenwenzel do you have time to help answer this question? |
Beta Was this translation helpful? Give feedback.
-
@seralf Could you try with |
Beta Was this translation helpful? Give feedback.
@seralf Could you try with
sail:sailType "rdf4j:LmdbStore" ;
? That might work in the mean time.