##// END OF EJS Templates
manifest: increase lrucache from 3 to 4...
Durham Goode -
r20075:f8737bce default
parent child Browse files
Show More
@@ -30,8 +30,9 b' class manifestdict(dict):'
30
30
31 class manifest(revlog.revlog):
31 class manifest(revlog.revlog):
32 def __init__(self, opener):
32 def __init__(self, opener):
33 # we expect to deal with not more than three revs at a time in merge
33 # we expect to deal with not more than four revs at a time,
34 self._mancache = util.lrucachedict(3)
34 # during a commit --amend
35 self._mancache = util.lrucachedict(4)
35 revlog.revlog.__init__(self, opener, "00manifest.i")
36 revlog.revlog.__init__(self, opener, "00manifest.i")
36
37
37 def parse(self, lines):
38 def parse(self, lines):
General Comments 0
You need to be logged in to leave comments. Login now