Mercurial > hg
comparison mercurial/help/internals/revlogs.txt @ 41202:e7a2cc84dbc0
revlog: always enable generaldelta on version 2 revlogs
This commit starts the process of diverging version 2 revlogs
from version 1 revlogs.
generaldelta is a useful feature and has been enabled by
default for ages. I can't think of a good reason why the
feature should be disabled. Yes, it is true changelogs
today don't have generaldelta enabled. But that's because
they don't have delta chains enabled, so generaldelta makes
no sense there.
This commit makes generaldelta always enabled on version 2
revlogs.
As part of this, one-off code in changelog.py mucking with
revlog.version had to be made conditional on the revlog
version, as we don't want to change revlog feature
flags on version 2 revlogs. The fact this code exists
is horrible and stems from revlog options being shared by
the opener. We probably want a better API here. But that can
wait for another patch.
Differential Revision: https://phab.mercurial-scm.org/D5561
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Wed, 09 Jan 2019 17:41:36 -0800 |
parents | d8fe67db5234 |
children | bfd65b5e070b |
comparison
equal
deleted
inserted
replaced
41201:6439cefaeb64 | 41202:e7a2cc84dbc0 |
---|---|
64 | 64 |
65 Version 2 revlogs have the following flags at the specified bit offsets: | 65 Version 2 revlogs have the following flags at the specified bit offsets: |
66 | 66 |
67 0 | 67 0 |
68 Store revision data inline. | 68 Store revision data inline. |
69 1 | |
70 Generaldelta encoding. | |
71 | 69 |
72 The following header values are common: | 70 The following header values are common: |
73 | 71 |
74 00 00 00 01 | 72 00 00 00 01 |
75 v1 | 73 v1 |
157 Version 2 Format | 155 Version 2 Format |
158 ================ | 156 ================ |
159 | 157 |
160 (In development. Format not finalized or stable.) | 158 (In development. Format not finalized or stable.) |
161 | 159 |
162 Version 2 is currently identical to version 1. This will obviously | 160 Version 2 is identical to version 2 with the following differences. |
163 change. | 161 |
162 There is no dedicated *generaldelta* revlog format flag. Instead, | |
163 the feature is implied enabled by default. | |
164 | 164 |
165 Delta Chains | 165 Delta Chains |
166 ============ | 166 ============ |
167 | 167 |
168 Revision data is encoded as a chain of *chunks*. Each chain begins with | 168 Revision data is encoded as a chain of *chunks*. Each chain begins with |