Skip to content

Commit

Permalink
Increase default db-cache-size to 1GiB
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechos committed Oct 28, 2024
1 parent 5cd51d8 commit 5ca4a8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/juno/juno.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const (
defaultGRPCPort = 6064
defaultRemoteDB = ""
defaultRPCMaxBlockScan = math.MaxUint
defaultCacheSizeMb = 8
defaultCacheSizeMb = 1024
defaultMaxHandles = 1024
defaultGwAPIKey = ""
defaultCNName = ""
Expand Down
2 changes: 1 addition & 1 deletion cmd/juno/juno_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func TestConfigPrecedence(t *testing.T) {
defaultPendingPollInterval := 5 * time.Second
defaultMaxVMs := uint(3 * runtime.GOMAXPROCS(0))
defaultRPCMaxBlockScan := uint(math.MaxUint)
defaultMaxCacheSize := uint(8)
defaultMaxCacheSize := uint(1024)
defaultMaxHandles := 1024
defaultCallMaxSteps := uint(4_000_000)
defaultGwTimeout := 5 * time.Second
Expand Down

0 comments on commit 5ca4a8c

Please sign in to comment.