1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-02 12:44:28 +00:00

Increase cache size

This commit is contained in:
Jan-Lukas Else 2020-11-20 16:24:18 +01:00
parent 1688193009
commit 93cdda07a1

View File

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