cmd/swarm: add default value to cache size

This commit is contained in:
Elad Nachmias 2019-02-25 17:40:31 +07:00
parent 997d763437
commit c93b68208a

View file

@ -149,8 +149,9 @@ var (
}
SwarmStoreCacheCapacity = cli.UintFlag{
Name: "store.cache.size",
Usage: "Number of recent chunks cached in memory (default 5000)",
Usage: "Number of recent chunks cached in memory",
EnvVar: SWARM_ENV_STORE_CACHE_CAPACITY,
Value: 10000,
}
SwarmCompressedFlag = cli.BoolFlag{
Name: "compressed",