diff options
author | Michael Haggerty <mhagger@alum.mit.edu> | 2015-06-22 16:02:59 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-06-22 13:17:10 -0700 |
commit | a087b432a79f85b34e8582219a0bdec73c5821f5 (patch) | |
tree | a6ff333e0564f36a893d504cf03919131e51be9a /test-config.c | |
parent | a122366d6946ea41ac8167a88f1949416008decb (diff) | |
download | git-a087b432a79f85b34e8582219a0bdec73c5821f5.tar.gz |
prune_refs(): use delete_refs()
The old version just looped over the references to delete, calling
delete_ref() on each one. But that has quadratic behavior, because
each call to delete_ref() might have to rewrite the packed-refs file.
This can be very expensive in a repository with a large number of
references. In some (admittedly extreme) repositories, we've seen
cases where the ref-pruning part of fetch takes multiple tens of
minutes.
Instead call delete_refs(), which (aside from being less code) has the
optimization that it only rewrites the packed-refs file a single time.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-config.c')
0 files changed, 0 insertions, 0 deletions