Skip to content
Discussion options

You must be logged in to vote

7-Zip uses a compression method called solid compression. In computing, solid compression means that multiple files are concatenated and treated as a single data stream before compression. An archive created this way is called a solid archive, and this is the native approach used by the 7z format.

Because of this design, extracting files from a solid archive has inherent limitations for parallelism. When extracting a file located in the middle of a solid archive, the decompressor must process the data sequentially from the beginning of the solid block up to the target file. In other words, extracting a single file requires processing all preceding files in the same solid block.

In py7zr, …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by baseplate-admin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants