[PATCH 4 of 7 V2] repoview: improve performance for computehidden

Sean Farley sean.michael.farley at gmail.com
Fri Mar 28 12:53:18 CDT 2014


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1395969295 18000
#      Thu Mar 27 20:14:55 2014 -0500
# Node ID 2b99277c3954019bc2afdb2940834b968e8137e5
# Parent  7ec54f5a811e6858baf78025cb654434eedd5347
repoview: improve performance for computehidden

For repos with a large number of heads (including hidden heads), a stale tag
cache would cause computehidden to be drastically slower because of a the call
to repo.tags() (which would build the tag cache).

We actually don't need the tag cache for computehidden because we filter out
global tags. This patch replaces the call to repo.tags with repo.localtags so
as to avoid the tag cache.

diff --git a/mercurial/repoview.py b/mercurial/repoview.py
--- a/mercurial/repoview.py
+++ b/mercurial/repoview.py
@@ -33,12 +33,11 @@ def computehidden(repo):
         blockers = [r for r in tofilter if r not in hideable]
         for par in repo[None].parents():
             blockers.append(par.rev())
         for bm in repo._bookmarks.values():
             blockers.append(repo[bm].rev())
-        tags = [n for t, n in repo.tags().iteritems()
-                if (repo.tagtype(t) and repo.tagtype(t) != 'global')]
+        tags = [n for t, n in repo.localtags().iteritems()]
         blockers.extend(repo[t].rev() for t in tags)
         blocked = cl.ancestors(blockers, inclusive=True)
         return frozenset(r for r in hideable if r not in blocked)
     return frozenset()
 


More information about the Mercurial-devel mailing list