Skip to content

Commit

Permalink
lru incerase default limits (#11738)
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov authored Sep 25, 2024
1 parent 68b0c3e commit 9451f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erigon-lib/state/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type domainGetFromFileCacheItem struct {
}

var (
domainGetFromFileCacheLimit = uint32(dbg.EnvInt("D_LRU", 4096))
domainGetFromFileCacheLimit = uint32(dbg.EnvInt("D_LRU", 10_000))
domainGetFromFileCacheTrace = dbg.EnvBool("D_LRU_TRACE", false)
domainGetFromFileCacheEnabled = dbg.EnvBool("D_LRU_ENABLED", true)
)
Expand Down

0 comments on commit 9451f8d

Please sign in to comment.