Lines Matching refs: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
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.
69 a property shared by most LZ compression algorithms, such as [zlib] or lzma.
76 on the [Silesia compression corpus].
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.
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