A parallel implementation of gzip for modern multi-processor multi-core machines
11–20 of 70 posts
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#12Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#13And the same for LZMA: https://github.com/vasi/pixz (it's relatively easy to remember those commands)
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#14My guess is that this compresses less efficiently as you would have to shard the dictionaries. Might be close though for large files. I was surprised that there were no speed or efficiency comparisons in the README.
I tested it on a 680 MB of text. gzip compresses to 246.0 MB. pigz compresses to 245.5 MB. I see similar percent change on a 3.8 MB text file. So they are approximately equivalent.
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#15And the same for LZMA: https://github.com/vasi/pixz (it's relatively easy to remember those commands)
Doesn't xz already support threads out of the box, by the --threads flag?
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#16And the same for LZMA: https://github.com/vasi/pixz (it's relatively easy to remember those commands)
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#17Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#18I'm using pbzip2 to solve this problem. http://compression.ca/pbzip2/
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#19Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#20Earlier quoted context omitted.
Doesn't xz already support threads out of the box, by the --threads flag?
The first stable version of xz with threading was 5.2.0, released in December 2014. A lot of people are running older packages, or were until recently, and habitually use pixz instead.
[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=731634