Last active
December 28, 2015 02:29
-
-
Save kshcherban/7428046 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
| time lz4c -c /tmp/512M-testfile | ssh -carcfour256 index-114 'lz4 -d > /tmp/512M-testfile' | |
| real 0m1.374s | |
| user 0m0.395s | |
| sys 0m0.455s | |
| time lzop -c /tmp/512M-testfile | ssh -carcfour256 index-114 'lzop -d > /tmp/512M-testfile' | |
| real 0m2.176s | |
| user 0m0.621s | |
| sys 0m0.240s | |
| time pigz -c /tmp/512M-testfile | ssh -carcfour256 index-114 'pigz -d > /tmp/512M-testfile' | |
| real 0m3.231s | |
| user 0m5.616s | |
| sys 0m0.447s | |
| time gzip -c /tmp/512M-testfile | ssh -carcfour256 index-114 'gzip -d > /tmp/512M-testfile' | |
| real 0m4.493s | |
| user 0m4.123s | |
| sys 0m0.168s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment