Skip to content

Instantly share code, notes, and snippets.

@kshcherban
Last active December 28, 2015 02:29
Show Gist options
  • Select an option

  • Save kshcherban/7428046 to your computer and use it in GitHub Desktop.

Select an option

Save kshcherban/7428046 to your computer and use it in GitHub Desktop.
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