Re: [PATCH 2/4] commit-graph: write a Bloom filter containing changed paths for each commit

2018-10-09 Thread SZEDER Gábor
On Tue, Oct 09, 2018 at 05:06:20PM -0400, Jeff King wrote: > On Tue, Oct 09, 2018 at 09:34:43PM +0200, SZEDER Gábor wrote: > > > Creating the Bloom filter is slw. Running it on git.git takes > > about 23s on my hardware, while > > > > git log --format='%H%n%P' --name-only --all >/dev/null

Re: [PATCH 2/4] commit-graph: write a Bloom filter containing changed paths for each commit

2018-10-09 Thread Jeff King
On Tue, Oct 09, 2018 at 09:34:43PM +0200, SZEDER Gábor wrote: > Creating the Bloom filter is slw. Running it on git.git takes > about 23s on my hardware, while > > git log --format='%H%n%P' --name-only --all >/dev/null > > gathers all the information necessary for that in about 5.3s.