equal
deleted
inserted
replaced
756 |
756 |
757 chainspan = ui.configbytes(b'experimental', b'maxdeltachainspan') |
757 chainspan = ui.configbytes(b'experimental', b'maxdeltachainspan') |
758 if 0 <= chainspan: |
758 if 0 <= chainspan: |
759 options[b'maxdeltachainspan'] = chainspan |
759 options[b'maxdeltachainspan'] = chainspan |
760 |
760 |
761 mmapindexthreshold = ui.configbytes(b'storage', b'mmap-threshold') |
761 mmapindexthreshold = ui.configbytes(b'experimental', |
|
762 b'mmapindexthreshold') |
762 if mmapindexthreshold is not None: |
763 if mmapindexthreshold is not None: |
763 options[b'mmapindexthreshold'] = mmapindexthreshold |
764 options[b'mmapindexthreshold'] = mmapindexthreshold |
764 |
765 |
765 withsparseread = ui.configbool(b'experimental', b'sparse-read') |
766 withsparseread = ui.configbool(b'experimental', b'sparse-read') |
766 srdensitythres = float(ui.config(b'experimental', |
767 srdensitythres = float(ui.config(b'experimental', |