fix: Use memory key/value storage for sparql backends

This commit is contained in:
Joachim Van Herwegen 2021-07-28 11:05:38 +02:00
parent 745eef798a
commit c01e33ecd9
2 changed files with 6 additions and 3 deletions

View File

@ -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",

View File

@ -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."
]
}
]
}