From cb2b2fd8058a71826f23f60036cb0232eee113c7 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Sun, 11 Dec 2022 13:03:15 +0000 Subject: [feature] support configuring database caches (#1246) * update config generator to support nested structs, add cache configuration options * update envparsing test * add cache configuration to config parse tests * set cache configuration in testrig * move caches to sub-cache "gts" namespace, update envparsing, add cache config docs to example config Signed-off-by: kim --- internal/config/testdata/test.yaml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'internal/config/testdata') diff --git a/internal/config/testdata/test.yaml b/internal/config/testdata/test.yaml index 9a57b589d..3b2b63fe2 100644 --- a/internal/config/testdata/test.yaml +++ b/internal/config/testdata/test.yaml @@ -409,3 +409,10 @@ syslog-protocol: "udp" # String. Address:port to send syslog logs to. Leave empty to connect to local syslog. # Default: "localhost:514" syslog-address: "localhost:514" + +# Cache configuration +cache: + gts: + account-max-size: 99 + account-ttl: "3h" + account-sweep-freq: "1s" \ No newline at end of file -- cgit v1.2.3