Created
May 7, 2014 13:41
-
-
Save wrboyce/d5ee75b71937caa54925 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# regular gzip | |
major:~/Downloads% time gzip 5000M.rnd | |
gzip 5000M.rnd 21.70s user 1.04s system 99% cpu 22.845 total | |
major:~/Downloads% du -h 5000M.rnd.gz | |
4.6M 5000M.rnd.gz | |
major:~/Downloads% time gunzip 5000M.rnd.gz | |
gunzip 5000M.rnd.gz 8.41s user 1.59s system 92% cpu 10.783 total | |
# pigz, multi-core gzip | |
major:~/Downloads% time pigz 5000M.rnd | |
pigz 5000M.rnd 49.46s user 1.57s system 1468% cpu 3.476 total | |
major:~/Downloads% du -h 5000M.rnd.gz | |
5.4M 5000M.rnd.gz | |
major:~/Downloads% time pigz -d 5000M.rnd.gz | |
pigz -d 5000M.rnd.gz 9.74s user 4.42s system 156% cpu 9.040 total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment