On Thu, 19 Jun 2008, Lea Wiemann wrote: > name-rev --stdin has some really high start-up time. The example below is on > my git.git branch. Is this unavoidable to make name-rev fast for naming high > numbers of revisions -- i.e. is it about amortization? Still, 0.7 seconds > seems pretty excessive, and on linux-2.6 it even takes 6 seconds. > > Anyone care to look into it? Actually, I think it's the reverse: without --stdin, name-rev can do a first pass that lets it eliminate a lot of data from consideration; with --stdin, it doesn't know if an item it hasn't seen is going to need some data, and so it's conservative and doesn't eliminate anything, which means that each request is slower, at least until it's cached everything that you turn out to care about. -Daniel *This .sig left intentionally blank* -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html