]> git.ipfire.org Git - thirdparty/git.git/commit - pack-check.c
Lazily open pack index files on demand
authorShawn O. Pearce <spearce@spearce.org>
Sat, 26 May 2007 05:24:19 +0000 (01:24 -0400)
committerJunio C Hamano <junkio@cox.net>
Sun, 27 May 2007 03:28:08 +0000 (20:28 -0700)
commitd079837eeeadc37d266113a1fd2deb0a01aaee91
tree96af52e5f25b1152674763a1c819d892bd75f9bb
parent99b5a79e1329468bee26ae3bd9070c47418279d0
Lazily open pack index files on demand

In some repository configurations the user may have many packfiles,
but all of the recent commits/trees/tags/blobs are likely to
be in the most recent packfile (the one with the newest mtime).
It is therefore common to be able to complete an entire operation
by accessing only one packfile, even if there are 25 packfiles
available to the repository.

Rather than opening and mmaping the corresponding .idx file for
every pack found, we now only open and map the .idx when we suspect
there might be an object of interest in there.

Of course we cannot known in advance which packfile contains an
object, so we still need to scan the entire packed_git list to
locate anything.  But odds are users want to access objects in the
most recently created packfiles first, and that may be all they
ever need for the current operation.

Junio observed in b867092f that placing recent packfiles before
older ones can slightly improve access times for recent objects,
without degrading it for historical object access.

This change improves upon Junio's observations by trying even harder
to avoid the .idx files that we won't need.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-count-objects.c
cache.h
pack-check.c
pack-redundant.c
sha1_file.c