From: "Nguyen Thai Ngoc Duy" <pclouds@gmail.com>
To: "Jeff King" <peff@peff.net>
Cc: "Yann Dirson" <ydirson@altern.org>,
"Junio C Hamano" <gitster@pobox.com>,
git@vger.kernel.org
Subject: Re: [PATCH 1/2] diffcore-rename: support rename cache
Date: Sat, 8 Nov 2008 19:00:10 +0700 [thread overview]
Message-ID: <fcaeb9bf0811080400h7ea5377cvaa8d658335811c23@mail.gmail.com> (raw)
In-Reply-To: <20081108114719.GA4989@sigill.intra.peff.net>
On 11/8/08, Jeff King <peff@peff.net> wrote:
> On Sat, Nov 08, 2008 at 10:24:10AM +0100, Yann Dirson wrote:
>
> > Well, it could be that an out-of-pathspec pair would have a better
> > score than an in-pathspec one. Maybe cache recording should be turned
> > off when doing pathspec limitation ?
>
>
> One thing I notice is that the cache works at the level of "here is the
> best rename for this commit." Maybe it could go down a level and say
> "here is the inexact rename score between these blobs". Then you would
> still find the best score between two blobs each time, but save the
> really computationally intensive part (which is comparing the actual
> _content_ of the blobs).
> That should work in the face of path limiting or any other option,
> because it is caching something immutable: this is the similarity score
> between two pieces of content. And then you get arbitrary tree-to-tree
> speedups for free, since such a cache would be valid for every commit.
I did that and realized the cost was not from each diff, in
--find-copies-harder case, but from the number of diffs you had to do.
Even with exact matching on linux-2.6.git, it could take significant
time (it was about 5 minutes in no-cache case, 1 minute without exact
match cache, and less than 1 sec if everything is cached).
>
> The downsides are:
>
> - your cache is potentially bigger, since you are caching the score of
> every pair you look at, instead of just "good" pairs (OTOH, you are
> not doing a per-commit cache, which helps reduce the size)
It is huge if you accidentially add --find-copies-harder to your
command, considering that every new file will be compared against
every files in tree (about 25k).
> - you can still "lie" about a score to pre-seed imported SVN renames,
> but such lying will actually apply to all commits.
--
Duy
next prev parent reply other threads:[~2008-11-08 12:01 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-11-07 14:35 [PATCH 1/2] diffcore-rename: support rename cache Nguyễn Thái Ngọc Duy
2008-11-07 14:35 ` [PATCH 2/2] diffcore-rename: add config option to allow to cache renames Nguyễn Thái Ngọc Duy
2008-11-07 22:21 ` [PATCH 1/2] diffcore-rename: support rename cache Yann Dirson
2008-11-07 23:17 ` Junio C Hamano
2008-11-08 4:01 ` Nguyen Thai Ngoc Duy
2008-11-08 9:24 ` Yann Dirson
2008-11-08 9:29 ` Nguyen Thai Ngoc Duy
2008-11-08 11:47 ` Jeff King
2008-11-08 12:00 ` Nguyen Thai Ngoc Duy [this message]
2008-11-09 2:04 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fcaeb9bf0811080400h7ea5377cvaa8d658335811c23@mail.gmail.com \
--to=pclouds@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
--cc=ydirson@altern.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox