A parallel implementation of gzip for modern multi-processor multi-core machines
1–10 of 70 posts
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#2Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#3split -l1000000 --filter='gzip > $FILE.gz' <(zcat large_fille.txt.gz)
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#4Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#5On the bzip2 side there is pbzip2, which is also a drop in replacement, http://compression.ca/pbzip2/
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#6(it's relatively easy to remember those commands)
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#7Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#8My 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.
If you are looking for details of the design of pigz, there is a very well-documented overview in the source of pigz.c:
Re: A parallel implementation of gzip for modern multi-processor multi-core machines
#9My 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.