NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
oooh, smaller! (Score:2)
"Development of this algorithm was sponsored by Intel"? :-)
Re: (Score:2)
And 30 minutes to decompress. Very small, but very very slow.
For comparison, the complete history of Perl (Score:1)
So, I started with over a hundred megabytes of tarballs from history.perl.org, and got those down to 6MB of git pack. Once into the Perforce history, I was looking at reducing the ~400MB of Perforce repository even further. After my initial export, it was already something like 250MB of Git pack (I wrote the exporter to make best use of on-the-fly delta compression). I left a fairly aggressive repack on it going, and it took about 30 minutes and left me with these packs [utsl.gen.nz], which are MUCH smaller. The deco
7Zip (Score:2)
I've long used 7-Zip when I'm forced to use a Windows system, but I've never used it's native 7z format (LZMA).
From a quick scan of Wikipedia it seems that the 7z format is LZMA compression with a 64-bit header and optional extras and the plain lzma tool as described by you here is a raw LZMA compression stream. They are incompatible in that the two tools can't yet process each others files, which is a shame.
I can see lzma files replacing bzip2 files in my archives now. How much smaller could CPAN be ma
-- "It's not magic, it's work..."
lrzip (Score:1)
It doesn't always compress tighter than LZMA but it's usually much faster.
<pre><tt>
% time lzma perl-5.10.0.tar
real 3m33.665s
user 3m31.538s
sys 0m0.530s
% ls -l perl-5.10.0.tar.lzma
-rw------- 1 eda eda 10100884 2008-01-25 10:50 perl-5.10.0.tar.lzma
% time lzma -d perl-5.10.0.t
-- Ed Avis ed@membled.com