mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-05 08:02:13 +00:00
cmd/syncthing: Rename weak to rolling (#4830)
This commit is contained in:
parent
7da829a86f
commit
862eec34db
@ -699,22 +699,22 @@ func syncthingMain(runtimeOptions RuntimeOptions) {
|
|||||||
|
|
||||||
if opts := cfg.Options(); opts.WeakHashSelectionMethod == config.WeakHashAuto {
|
if opts := cfg.Options(); opts.WeakHashSelectionMethod == config.WeakHashAuto {
|
||||||
perfWithWeakHash := cpuBench(3, 150*time.Millisecond, true)
|
perfWithWeakHash := cpuBench(3, 150*time.Millisecond, true)
|
||||||
l.Infof("Hashing performance with weak hash is %.02f MB/s", perfWithWeakHash)
|
l.Infof("Hashing performance with rolling hash is %.02f MB/s", perfWithWeakHash)
|
||||||
perfWithoutWeakHash := cpuBench(3, 150*time.Millisecond, false)
|
perfWithoutWeakHash := cpuBench(3, 150*time.Millisecond, false)
|
||||||
l.Infof("Hashing performance without weak hash is %.02f MB/s", perfWithoutWeakHash)
|
l.Infof("Hashing performance without rolling hash is %.02f MB/s", perfWithoutWeakHash)
|
||||||
|
|
||||||
if perfWithoutWeakHash*0.8 > perfWithWeakHash {
|
if perfWithoutWeakHash*0.8 > perfWithWeakHash {
|
||||||
l.Infof("Weak hash disabled, as it has an unacceptable performance impact.")
|
l.Infof("Rolling hash disabled, as it has an unacceptable performance impact.")
|
||||||
weakhash.Enabled = false
|
weakhash.Enabled = false
|
||||||
} else {
|
} else {
|
||||||
l.Infof("Weak hash enabled, as it has an acceptable performance impact.")
|
l.Infof("Rolling hash enabled, as it has an acceptable performance impact.")
|
||||||
weakhash.Enabled = true
|
weakhash.Enabled = true
|
||||||
}
|
}
|
||||||
} else if opts.WeakHashSelectionMethod == config.WeakHashNever {
|
} else if opts.WeakHashSelectionMethod == config.WeakHashNever {
|
||||||
l.Infof("Disabling weak hash")
|
l.Infof("Disabling rolling hash")
|
||||||
weakhash.Enabled = false
|
weakhash.Enabled = false
|
||||||
} else if opts.WeakHashSelectionMethod == config.WeakHashAlways {
|
} else if opts.WeakHashSelectionMethod == config.WeakHashAlways {
|
||||||
l.Infof("Enabling weak hash")
|
l.Infof("Enabling rolling hash")
|
||||||
weakhash.Enabled = true
|
weakhash.Enabled = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user