From: Bernie Innocenti Date: Mon, 6 Dec 2010 18:07:48 +0000 (-0500) Subject: Add compression algorithms benchmark X-Git-Url: https://codewiz.org/gitweb?p=wiki.git;a=commitdiff_plain;h=80191c43a9fef1d2f8e7df0d6249f39d1885466e Add compression algorithms benchmark --- diff --git a/memo/benchmark/compression-algorithms b/memo/benchmark/compression-algorithms new file mode 100644 index 0000000..e90556c --- /dev/null +++ b/memo/benchmark/compression-algorithms @@ -0,0 +1,14 @@ +== Compression of source code == + +time tar cf gcc-3.4.6-newbin.tar gcc-3.4.6-newbin +time tar czf gcc-3.4.6-newbin.tar.gz gcc-3.4.6-newbin +time tar cjf gcc-3.4.6-newbin.tar.bz2 gcc-3.4.6-newbin +time tar cJf gcc-3.4.6-newbin.tar.xz gcc-3.4.6-newbin + +|| *archiver* || *size* || *pack* || *unpack* || +|| tar || 147MB || 0.267s || 0.809s || +|| tar.gz || 53MB || 9.251s || 1.963s || +|| tar.bz2 || 45MB || 17.134s || 7.640s || +|| tar.xz || 18MB || 69.461s || 2.218s || + +Computed on giskard-x201 (Intel i7 M 620 @ 2.67GHz, Fedora 14 x86_64)