diff options
| author | 2022-12-11 13:03:15 +0000 | |
|---|---|---|
| committer | 2022-12-11 13:03:15 +0000 | |
| commit | cb2b2fd8058a71826f23f60036cb0232eee113c7 (patch) | |
| tree | 761e6c0acc211c8ca9e8b957cd99d1e93668eebe /internal/config/testdata | |
| parent | [docs] Caching webfinger with nginx (#1242) (diff) | |
| download | gotosocial-cb2b2fd8058a71826f23f60036cb0232eee113c7.tar.xz | |
[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 <grufwub@gmail.com>
Diffstat (limited to 'internal/config/testdata')
| -rw-r--r-- | internal/config/testdata/test.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
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 |
