Skip to content
Snippets Groups Projects
Commit ccb93e9a authored by Pierre-Yves David's avatar Pierre-Yves David
Browse files

perf: add a perfloadmarkers command

It is used to benchmark the obsstore initialization time.
parent cf3495df
No related branches found
No related tags found
No related merge requests found
......@@ -525,3 +525,12 @@
branchmap.read = oldread
branchmap.branchcache.write = oldwrite
fm.end()
@command('perfloadmarkers')
def perfloadmarkers(ui, repo):
"""benchmark the time to parse the on-disk markers for a repo
Result is the number of markers in the repo."""
timer, fm = gettimer(ui)
timer(lambda: len(obsolete.obsstore(repo.sopener)))
fm.end()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment