We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bcdaefc + ccbd486 commit 31c1dc5Copy full SHA for 31c1dc5
1 file changed
docs/src/rest/configuration.md
@@ -13,7 +13,11 @@ host = "localhost"
13
graphannis = "data/"
14
sqlite = "service.sqlite"
15
disk_based = false
16
+# Use 25% Of the free memory
17
cache = {PercentOfFreeMemory = 25.0}
18
+# Optional timeout for queries in seconds. No timeout is applied if parameter is
19
+# not given.
20
+query_timeout = 60
21
22
[logging]
23
debug = false
@@ -56,6 +60,8 @@ cache = {FixedMaxMemory = 8000}
56
60
```
57
61
at most 8 GB of RAM.
58
62
63
+Queries can be aborted automatically after a specific timeout, by setting the `query_timeout` parameter which specifies the timeout in seconds.
64
+
59
65
## [logging] section
66
67
Per default, graphANNIS will only output information, warning and error
0 commit comments