Increase cache size

This commit is contained in:
Jan-Lukas Else 2020-11-20 16:24:18 +01:00
parent 1688193009
commit 93cdda07a1
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ var (
)
func initCache() (err error) {
cacheLru, err = lru.New(200)
cacheLru, err = lru.New(500)
return
}