summaryrefslogtreecommitdiff
path: root/remote.h
diff options
context:
space:
mode:
authorPatrick Reynolds <patrick.reynolds@github.com>2014-07-29 14:43:39 +0000
committerJunio C Hamano <gitster@pobox.com>2014-07-30 11:29:33 -0700
commitd0da003d5b1e65f6e52920e42582f43b357782ee (patch)
tree8e2dc93a14690fa10a5424716f7ed1b0a07fb1d8 /remote.h
parent583b61c1af1bac12d6b48b2583ad508b5ab9964c (diff)
downloadgit-d0da003d5b1e65f6e52920e42582f43b357782ee.tar.gz
use a hashmap to make remotes fasterpr/remotes-in-hashmap
Remotes are stored as an array, so looking one up or adding one without duplication is an O(n) operation. Reading an entire config file full of remotes is O(n^2) in the number of remotes. For a repository with tens of thousands of remotes, the running time can hit multiple minutes. Hash tables are way faster. So we add a hashmap from remote name to struct remote and use it for all lookups. The time to add a new remote to a repo that already has 50,000 remotes drops from ~2 minutes to < 1 second. We retain the old array of remotes so iterators proceed in config-file order. Signed-off-by: Patrick Reynolds <patrick.reynolds@github.com> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote.h')
-rw-r--r--remote.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/remote.h b/remote.h
index 917d383a80..8b62efd2ad 100644
--- a/remote.h
+++ b/remote.h
@@ -2,6 +2,7 @@
#define REMOTE_H
#include "parse-options.h"
+#include "hashmap.h"
enum {
REMOTE_CONFIG,
@@ -10,6 +11,8 @@ enum {
};
struct remote {
+ struct hashmap_entry ent; /* must be first */
+
const char *name;
int origin;