This repository was archived by the owner on Sep 11, 2020. It is now read-only.
This repository was archived by the owner on Sep 11, 2020. It is now read-only.
dotgit: speed up the index creation #719
Open
Description
To speed up the index creation we should avoid to decompress un required objects. To archive thi:
- Should implement/find a zlib decoder that we we pass io.Discard, it discard the content without decoding
- Use the
packfile.Scanner
and not thepackfile.Decoder
to have a more optimal and controlled decoding.