Search for fast lossless compression technology

I want to compress a string of bits, after which I want to unpack it. Can any body help me, mentioning the method of fast lossless compression and decompression and, if possible, compared with the implementation of programming.

+4
source share
4 answers

If you are looking for speed, then using a fast compression algorithm such as LZ4 makes sense. Such an algorithm is an order of magnitude faster than zlib / gzip (for example, 10 times faster). http://code.google.com/p/lz4/

+7
source

How about forever green gzip or bzip2 ? They come already as a library, ready for use.

+2
source

Gzip?

The algorithm can be found here:

http://www.gzip.org/algorithm.txt

Bonus: compatibility with almost everything.

+1
source

According to Matt Mahowey, “Big Benchmark Compression Text” ( http://mattmahoney.net/dc/text.html ) there are some very fast decompressors with a good compression ratio:

  • lzturbo 1.1 (-49 -b1000 -p0) decompression 9 ns / byte
  • lzham alpha 3 x64 (-m4 -d29) 9 ns / byte decompression
  • 4x4 / tornado - 9-13 ns / byte decompression
  • libzling 20140430-bugfix (e4) 40 ns / byte compression and decompression 10 ns / byte
  • crush 1.00 (cx) 13-15 ns / byte decompression
0
source

All Articles