]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/doc/compress.txt
Fastbufs: Clean up exception handling
[libucw.git] / ucw / doc / compress.txt
index 7e9509976db2bdfec1294e1a3d3077ba418fe9ef..d45276360bd9534d82985a16344389a12b572da5 100644 (file)
@@ -3,10 +3,12 @@ Compression
 
 The library contains a compression routine, called LiZaRd.  It is
 modified Lempel-Ziv 77 method with slightly worse compression ratio,
-but with faster compression and decompression.
+but with faster compression and decompression (compression is few times
+faster than zlib, decompression is slightly slower than memcpy()).
 
-// TODO Meaning of the abbreviation
-// TODO Actual numbers how fast it is?
+The data format and inspiration for code comes from the LZO project
+(which couldn't be used due to licence problems). They might be
+compatible, but no-one tested that.
 
 - <<basic,Basic application>>
 - <<safe,Safe decompression>>