-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12803 from man-group/perf-optimize-extraction
PERF: extract files from wheel in 1MB blocks + skip decoding for 0 bytes files
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Improve pip install performance. Files are now extracted in 1MB blocks, | ||
or in one block matching the file size for smaller files. | ||
A decompressor is no longer instantiated when extracting 0 bytes files, | ||
it is not necessary because there is no data to decompress. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters