Re: [PATCH 0/2] Refactor hash search with fanout table

2018-02-02 Thread Derrick Stolee
On 2/2/2018 6:30 PM, Junio C Hamano wrote: Jonathan Tan writes: After reviewing Derrick's Serialized Git Commit Graph patches [1], I noticed that "[PATCH v2 11/14] commit: integrate commit graph with commit parsing" contains (in bsearch_graph) a repeat of some

Re: [PATCH 0/2] Refactor hash search with fanout table

2018-02-02 Thread Junio C Hamano
Jonathan Tan writes: > After reviewing Derrick's Serialized Git Commit Graph patches [1], I > noticed that "[PATCH v2 11/14] commit: integrate commit graph with > commit parsing" contains (in bsearch_graph) a repeat of some packfile > functionality. Here is a pack that

[PATCH 0/2] Refactor hash search with fanout table

2018-02-02 Thread Jonathan Tan
After reviewing Derrick's Serialized Git Commit Graph patches [1], I noticed that "[PATCH v2 11/14] commit: integrate commit graph with commit parsing" contains (in bsearch_graph) a repeat of some packfile functionality. Here is a pack that refactors that functionality out. Derrick, consider