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 --- testrig/config.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'testrig/config.go') diff --git a/testrig/config.go b/testrig/config.go index a8526097d..a1d7e5d54 100644 --- a/testrig/config.go +++ b/testrig/config.go @@ -110,4 +110,7 @@ var testDefaults = config.Configuration{ AdvancedRateLimitRequests: 0, // disabled SoftwareVersion: "0.0.0-testrig", + + // simply use cache defaults. + Cache: config.Defaults.Cache, } -- cgit v1.2.3