feat: change cache size in manager (#2623)

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2023-08-11 18:55:57 +08:00 committed by GitHub
parent 9e1bb52f2b
commit 25d91ec739
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ const (
DefaultLFUCacheTTL = 3 * time.Minute DefaultLFUCacheTTL = 3 * time.Minute
// DefaultLFUCacheSize is default size for lfu cache. // DefaultLFUCacheSize is default size for lfu cache.
DefaultLFUCacheSize = 200 * 1000 DefaultLFUCacheSize = 50 * 1000
) )
const ( const (