Mercurial > hg
changeset 38633:e3d18de56417
sparse-read: discard gap below 65K only
Testing on actual data shows that 65K is more efficient in both time and memory
than 256K.
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Tue, 10 Jul 2018 02:33:43 +0200 |
parents | eb8504715071 |
children | f0ea8b847831 |
files | mercurial/configitems.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/configitems.py Fri Jun 22 17:12:24 2018 +0200 +++ b/mercurial/configitems.py Tue Jul 10 02:33:43 2018 +0200 @@ -597,7 +597,7 @@ default=0.50, ) coreconfigitem('experimental', 'sparse-read.min-gap-size', - default='256K', + default='65K', ) coreconfigitem('experimental', 'treemanifest', default=False,