From c01e33ecd9b25efa9219cc98519de8042b3ad380 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Wed, 28 Jul 2021 11:05:38 +0200 Subject: [PATCH] fix: Use memory key/value storage for sparql backends --- config/path-routing.json | 2 +- config/sparql-endpoint.json | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/config/path-routing.json b/config/path-routing.json index 1da9fc335..67e3df917 100644 --- a/config/path-routing.json +++ b/config/path-routing.json @@ -19,7 +19,7 @@ "files-scs:config/ldp/metadata-writer/default.json", "files-scs:config/ldp/permissions/acl.json", "files-scs:config/storage/backend/regex.json", - "files-scs:config/storage/key-value/resource-store.json", + "files-scs:config/storage/key-value/memory.json", "files-scs:config/storage/middleware/default.json", "files-scs:config/util/auxiliary/acl.json", "files-scs:config/util/identifiers/suffix.json", diff --git a/config/sparql-endpoint.json b/config/sparql-endpoint.json index 5966d1c05..0cba57d31 100644 --- a/config/sparql-endpoint.json +++ b/config/sparql-endpoint.json @@ -19,7 +19,7 @@ "files-scs:config/ldp/metadata-writer/default.json", "files-scs:config/ldp/permissions/acl.json", "files-scs:config/storage/backend/sparql.json", - "files-scs:config/storage/key-value/resource-store.json", + "files-scs:config/storage/key-value/memory.json", "files-scs:config/storage/middleware/default.json", "files-scs:config/util/auxiliary/acl.json", "files-scs:config/util/identifiers/suffix.json", @@ -31,7 +31,10 @@ ], "@graph": [ { - "comment": "A single-pod server that stores its resources in a SPARQL endpoint." + "comment": [ + "A single-pod server that stores its resources in a SPARQL endpoint.", + "This server only supports RDF data. For this reason it can not use its resource store for internal key/value storage." + ] } ] }