diff mercurial/branchmap.py @ 24378:9347c15d8136

revbranchcache: write cache even during read operations Previously we would only actually write the revbranchcache to disk if we were in the middle of a write operation (like commit). Now we will also write it during any read operation. The cache knows how to invalidate itself, so it shouldn't become corrupt if multiple writers try at once (and the write-on-read behavior/risk is the same as all our other caches).
author Durham Goode <durham@fb.com>
date Tue, 24 Feb 2015 18:43:31 -0800
parents 656f93ce66d5
children 467a33142425
line wrap: on
line diff
--- a/mercurial/branchmap.py	Tue Feb 10 20:06:12 2015 -0800
+++ b/mercurial/branchmap.py	Tue Feb 24 18:43:31 2015 -0800
@@ -97,9 +97,6 @@
         partial.update(repo, revs)
         partial.write(repo)
 
-    if repo._revbranchcache is not None:
-        repo._revbranchcache.write()
-
     assert partial.validfor(repo), filtername
     repo._branchcaches[repo.filtername] = partial