mercurial/revlogutils/constants.py
changeset 49677 05db41701ece
parent 48875 6000f5b25c9b
child 49768 bcae90c53def
equal deleted inserted replaced
49676:4302db0f54c8 49677:05db41701ece
   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