##// END OF EJS Templates
add documentation for revlog._prereadsize
Benoit Boissinot -
r10916:9c84395a stable
parent child Browse files
Show More
@@ -31,9 +31,11 b' REVLOG_DEFAULT_FLAGS = REVLOGNGINLINEDAT'
31 REVLOG_DEFAULT_FORMAT = REVLOGNG
31 REVLOG_DEFAULT_FORMAT = REVLOGNG
32 REVLOG_DEFAULT_VERSION = REVLOG_DEFAULT_FORMAT | REVLOG_DEFAULT_FLAGS
32 REVLOG_DEFAULT_VERSION = REVLOG_DEFAULT_FORMAT | REVLOG_DEFAULT_FLAGS
33
33
34 # amount of data read unconditionally, should be >= 4
35 # when not inline: threshold for using lazy index
34 _prereadsize = 1048576
36 _prereadsize = 1048576
35
37 # max size of revlog with inline data
36 _maxinline = 131072 # max size of revlog with inline data
38 _maxinline = 131072
37
39
38 RevlogError = error.RevlogError
40 RevlogError = error.RevlogError
39 LookupError = error.LookupError
41 LookupError = error.LookupError
General Comments 0
You need to be logged in to leave comments. Login now