fix: reduce cache hits averaging size for improved performance
All checks were successful
Release Tag / release (push) Successful in 9s

This commit is contained in:
2025-01-22 20:59:24 -06:00
parent 4a69c4ba66
commit 6fe80c82ad

View File

@@ -101,7 +101,7 @@ func New(address string, memorySize string, memoryMultiplier int, diskSize strin
memorygc: mgc, memorygc: mgc,
diskgc: dgc, diskgc: dgc,
hits: avgcachestate.New(10000), hits: avgcachestate.New(100),
} }
if d != nil { if d != nil {