mercurial/manifest.py
changeset 34296 3c9691728237
parent 33175 3b85c474cbcf
child 34345 05167447f90d
equal deleted inserted replaced
34295:3bb2a9f25fe9 34296:3c9691728237
  1229         else:
  1229         else:
  1230             self._dirlogcache = {'': self}
  1230             self._dirlogcache = {'': self}
  1231 
  1231 
  1232         super(manifestrevlog, self).__init__(opener, indexfile,
  1232         super(manifestrevlog, self).__init__(opener, indexfile,
  1233                                              # only root indexfile is cached
  1233                                              # only root indexfile is cached
  1234                                              checkambig=not bool(dir))
  1234                                              checkambig=not bool(dir),
       
  1235                                              mmaplargeindex=True)
  1235 
  1236 
  1236     @property
  1237     @property
  1237     def fulltextcache(self):
  1238     def fulltextcache(self):
  1238         return self._fulltextcache
  1239         return self._fulltextcache
  1239 
  1240