Hello, i'm writing project that stores data, so i need to compress it. I've tried zlib but it's bottleneck of my project. So maybe there is faster solution. I don't need a great compress ratio, but i'm looking for really fast compression. Are there any other data compression libraries except zlib, that are really free and can be used in proprietary software (project, i'm working on, isn't GPL-based). My project is on C++ and I need to compress char* arrays of text.
|
1
|
|
|
|
|
|
Since you need something that is quick but not necessarily the best compression ever, you might consider a library that does RLE (run-length encoding) compression. One implementation is librle, which is under the BSD license, which is pretty permissible for proprietary use. |
||
|
|
|
|
A very fast compression algorithm is LZO. Benchmarks on the site show that decompression is comparable in speed to The free version of LZO is GPL licensed, but there is also a commercial version of the library in LZO Professional. Also, from the documentation:
|
|||
|
|
|
|
Yes, bzip2 has a BSD license. |
||
|
|
|
I think 7zip is public domain. LZMA compression. |
||||||||||
|
|
|
Another answer already mentions Another one I've found is liblzf. Pretty close to |
||
|
|
|
|
Intel Integrated Performance Primitives has samples that implements variety of compressions:
IPP is not free, but it really fast. It supports Windows and Linux. |
||
|
|
|
|
Here are a few: FastLZ -- fast and lightweight, MIT license unless you want to use it under a GPL license LZJB -- also fast and pretty lightweight, used as default compression algorithm for Sun's ZFS |
||
|
|
