From 642021191fb7b79bb4411d97c7a8dab29a3dcec1 Mon Sep 17 00:00:00 2001 From: Luigi Asprino Date: Wed, 11 Sep 2024 16:26:13 +0200 Subject: [PATCH] #211 Add activity diagrams to SystemOverview.md #371 and #372 document use-cache option --- Configuration.md | 15 +++++++++++++ README.md | 1 + SystemOverview.md | 20 +++++++++++++++++- imgs/workflow1.png | Bin 0 -> 43264 bytes imgs/workflow2.png | Bin 0 -> 89439 bytes .../engine/DatasetGraphCreator.java | 2 +- .../github/sparqlanything/it/CacheTest.java | 5 ++--- .../sparqlanything/model/IRIArgument.java | 2 +- 8 files changed, 39 insertions(+), 6 deletions(-) create mode 100644 imgs/workflow1.png create mode 100644 imgs/workflow2.png diff --git a/Configuration.md b/Configuration.md index e44c354f..5cbd1838 100644 --- a/Configuration.md +++ b/Configuration.md @@ -1283,6 +1283,21 @@ Result } ``` +### use-cache + +When set to true, the result of the triplification is cached in memory and used to answer the same query again. (see issue [#371](https://github.com/SPARQL-Anything/sparql.anything/issues/371) and [#372](https://github.com/SPARQL-Anything/sparql.anything/issues/372)). +You can check out whether a query has been evaluated over a cached graph via the `fx:cachedGraph` assertion of the [audit graph](#audit). + +#### Valid Values + +`true`/`false` + +#### Default Value + +`false` + + +