From 6fd7a9a8e404a2efbebbcf84984d6874a4feda1b Mon Sep 17 00:00:00 2001 From: ia Date: Tue, 8 May 2018 13:50:19 +0900 Subject: [PATCH] problem: 128mb as db cache default is tiny, leads to slowness solution: bump to 1024mb default. This is on par with gethETC, though Parity appears to still use 128mb as of 1.9.7 --- cmd/geth/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/flags.go b/cmd/geth/flags.go index 88559defa..b286dc8bf 100644 --- a/cmd/geth/flags.go +++ b/cmd/geth/flags.go @@ -83,7 +83,7 @@ var ( CacheFlag = cli.IntFlag{ Name: "cache", Usage: "Megabytes of memory allocated to internal caching (min 16MB / database forced)", - Value: 128, + Value: 1024, } BlockchainVersionFlag = cli.IntFlag{ Name: "blockchain-version,blockchainversion",