Show More
@@ -1266,23 +1266,10 b' coreconfigitem(' | |||
|
1266 | 1266 | b'usestore', |
|
1267 | 1267 | default=True, |
|
1268 | 1268 | ) |
|
1269 | # Right now, the only efficient implement of the nodemap logic is in Rust, | |
|
1270 | # | |
|
1271 | # The case was discussed that the 5.6 sprint and the following was decided for | |
|
1272 | # feature that have an optional fast implementation (and are a performance | |
|
1273 | # regression in the others) | |
|
1274 | # | |
|
1275 | # * If the fast implementation is not available, Mercurial will refuse to | |
|
1276 | # access repository that requires it. Pointing to proper documentation | |
|
1277 | # | |
|
1278 | # * An option exist to lift that limitation and allow repository access. | |
|
1279 | # | |
|
1280 | # Such access will emit a warning unless configured not to. | |
|
1281 | # | |
|
1282 | # * When sufficiently mature, the feature can be enabled by default only for | |
|
1283 | # installation that supports it. | |
|
1284 | coreconfigitem( | |
|
1285 | b'format', b'use-persistent-nodemap', default=False, experimental=True | |
|
1269 | coreconfigitem( | |
|
1270 | b'format', | |
|
1271 | b'use-persistent-nodemap', | |
|
1272 | default=False, | |
|
1286 | 1273 | ) |
|
1287 | 1274 | coreconfigitem( |
|
1288 | 1275 | b'format', |
@@ -1787,14 +1774,12 b' coreconfigitem(' | |||
|
1787 | 1774 | b'storage', |
|
1788 | 1775 | b'revlog.persistent-nodemap.mmap', |
|
1789 | 1776 | default=True, |
|
1790 | experimental=True, | |
|
1791 | 1777 | ) |
|
1792 | 1778 | # experimental as long as format.use-persistent-nodemap is. |
|
1793 | 1779 | coreconfigitem( |
|
1794 | 1780 | b'storage', |
|
1795 | 1781 | b'revlog.persistent-nodemap.slow-path', |
|
1796 | 1782 | default=b"abort", |
|
1797 | experimental=True, | |
|
1798 | 1783 | ) |
|
1799 | 1784 | |
|
1800 | 1785 | coreconfigitem( |
General Comments 0
You need to be logged in to leave comments.
Login now