vote up 0 vote down star

What is the best compression algorithm with the following features:

  • should take less time to decompress (can take reasonably more time compress)
  • should be able to compress sorted data (approx list of 3,000,000 strings/integers ...)

Please suggest along with metrics: compression ratio, algorithmic complexity for compression and decompression (if possible)?

flag

There are not nearly enough constraints on this question. Depends on OS, file system, data being compressed, CPU speed vs. i/o speed. E.g., when compressing many small files, often quicker to compress than decompress as filesystem must created many file entries when decompressing. – OrbMan Dec 22 '08 at 18:18
Hey let's give a little slack! Yes, OS and file system are relevant but you can still measure a compression method against itself for compress/decompress times. Don't be a hater ;) – Dave Swersky Dec 22 '08 at 18:26
Heh... So the first constraint is, any amount of time is allowed for compression (0-infinity), and decompression must take less than that amount of time. Could be satisfied by an algorithm that takes three months to decompress ten bytes, so long as compressing took three months and 1 second... – Shog9 Dec 22 '08 at 18:27

3 Answers

vote up 4 vote down check

Entire site devoted to compression benchmarking here

link|flag
Wow good link, that site is so obsessive, it's both awesome and scary. – TravisO Dec 22 '08 at 18:24
good link. thanks for the info. – FL4SOF Dec 22 '08 at 20:17
first link seems to be broken... – Lawand Jul 11 at 13:03
First link is broken – Jeff Johnson Aug 17 at 19:06
vote up 1 vote down

You don't have to worry about decompression time. The time spent the higher compression level is mostly finding the longest matching pattern.

Decompression either

1) Writes the literal 
2) for (backward position, length)=(m,n) pair, 
   goes back, in the output buffer, m bytes, 
   reads n bytes and 
   writes n bytes at the end of the buffer.

So the decompression time is independent of the compression level. And, with my experience with Universal Decompression Virtual Machine (RFC3320), I guess the same is true for any decompression algorithm.

link|flag
vote up 0 vote down

Well if you just want speed, then standard ZIP compression is just fine and it's most likely integrated into your language/framework already (ex: .NET has it, Java has it). Sometimes the most universal solution is the best, ZIP is a very mature format, any ZIP library and application will work with any other.

But if you want better compression, I'd suggest 7-Zip as the author is very smart, easy to get ahold of and encourages people to use the format.

Providing you with compression times is impossible, as it's directly related to your hardware. If you want a benchmark, you have to do it yourself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.