comparison mercurial/configitems.py @ 44308:5962fd0d1045

nodemap: write nodemap data on disk Let us start writing data on disk (so that we can read it from there later). This series of changeset is going to focus first on having data on disk and updating it. Right now the data is written right next to the revlog data, in the store. We might move it to cache (with proper cache validation mechanism) later, but for now revlog have a storevfs instance and it is simpler to us it. The right location for this data is not the focus of this series. Differential Revision: https://phab.mercurial-scm.org/D7835
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 15 Jan 2020 15:47:21 +0100
parents 8042856c90b6
children 6f9e8e142cea
comparison
equal deleted inserted replaced
44307:c577bb4a04d4 44308:5962fd0d1045
658 ) 658 )
659 coreconfigitem( 659 coreconfigitem(
660 b'experimental', b'rust.index', default=False, 660 b'experimental', b'rust.index', default=False,
661 ) 661 )
662 coreconfigitem( 662 coreconfigitem(
663 b'experimental', b'exp-persistent-nodemap', default=False,
664 )
665 coreconfigitem(
663 b'experimental', b'server.filesdata.recommended-batch-size', default=50000, 666 b'experimental', b'server.filesdata.recommended-batch-size', default=50000,
664 ) 667 )
665 coreconfigitem( 668 coreconfigitem(
666 b'experimental', 669 b'experimental',
667 b'server.manifestdata.recommended-batch-size', 670 b'server.manifestdata.recommended-batch-size',