Lines Matching full:compression

3 __Zstandard__, or `zstd` as short version, is a fast lossless compression algorithm,
4 targeting real-time compression scenarios at zlib-level and better compression ratios.
34 For reference, several fast compression algorithms were tested and compared
39 on the [Silesia compression corpus].
42 [Silesia compression corpus]: http://sun.aei.polsl.pl/~sdeor/index.php?page=silesia
45 | Compressor name | Ratio | Compression| Decompress.|
62 The negative compression levels, specified with `--fast=#`,
63 offer faster compression and decompression speed
64 at the cost of compression ratio (compared to level 1).
66 Zstd can also offer stronger compression ratios at the cost of compression speed.
67 Speed vs Compression trade-off is configurable by small increments.
69 a property shared by most LZ compression algorithms, such as [zlib] or lzma.
76 on the [Silesia compression corpus].
78 Compression Speed vs Ratio | Decompression Speed
80 ![Compression Speed vs Ratio](doc/images/CSpeed2.png "Compression Speed vs Ratio") | ![Decompressio…
82 A few other algorithms can produce higher compression ratios at slower speeds, falling outside of t…
86 ## The case for Small Data compression
90 …t it is to compress. This problem is common to all compression algorithms, and reason is, compress…
93 …g is stored in a file called "dictionary", which must be loaded before compression and decompressi…
94 Using this dictionary, the compression ratio achievable on small data improves dramatically.
99 Compression Ratio | Compression Speed | Decompression Speed
101 ![Compression Ratio](doc/images/dict-cr.png "Compression Ratio") | ![Compression Speed](doc/images/…
104 These compression gains are achieved while simultaneously providing _faster_ compression and decomp…
108 Dictionary gains are mostly effective in the first few KB. Then, the compression algorithm will gra…
110 ### Dictionary compression How To: argument