equal
deleted
inserted
replaced
299 }, |
299 }, |
300 } |
300 } |
301 |
301 |
302 |
302 |
303 SPARSE_REVLOG_MAX_CHAIN_LENGTH = 1000 |
303 SPARSE_REVLOG_MAX_CHAIN_LENGTH = 1000 |
|
304 |
|
305 ### What should be done with a cached delta and its base ? |
|
306 |
|
307 # Ignore the cache when considering candidates. |
|
308 # |
|
309 # The cached delta might be used, but the delta base will not be scheduled for |
|
310 # usage earlier than in "normal" order. |
|
311 DELTA_BASE_REUSE_NO = 0 |
|
312 |
|
313 # Prioritize trying the cached delta base |
|
314 # |
|
315 # The delta base will be tested for validy first. So that the cached deltas get |
|
316 # used when possible. |
|
317 DELTA_BASE_REUSE_TRY = 1 |