Lines Matching refs:compression

72 - __ZSTD_NOCOMPRESS__ : `zstd` cli will be compiled without support for compression.
111 which can be loaded before compression and decompression.
113 Using a dictionary, the compression ratio achievable on small data improves dramatically.
114 These compression gains are achieved while simultaneously providing faster compression and decompre…
117 Dictionary gains are mostly effective in the first few KB. Then, the compression algorithm
128 CLI includes in-memory compression benchmark module for zstd.
134 The benchmark measures ratio, compressed size, compression and decompression speed.
135 One can select compression levels starting from `-b` and ending with `-e`.
148 -# : # compression level (1-19, default: 3)
150 -D DICT: use DICT as Dictionary for compression or decompression
153 --rm : remove source file(s) after successful de/compression
167 --[no-]check : during compression, add XXH64 integrity checksum to frame (default: enabled). If spe…
170 Advanced compression arguments :
173 --fast[=#]: switch to very fast compression levels (default: 1)
174 --adapt : dynamically adapt compression level to I/O conditions
175 -T# : spawns # compression threads (default: 1, 0==# cores)
177 --single-thread : use a single thread for both I/O and compression (result slightly different than …
181 --size-hint=# optimize compression parameters for streaming input of approximately this size
183 --no-dictID : don't write dictID into header (dictionary compression only)
207 -b# : benchmark file(s), using # compression level (default: 3)
208 -e# : test all compression levels successively from -b# to -e# (default: 1)
220 `ZSTD_CLEVEL` can be used to modify the default compression level of `zstd`
224 that `zstd` will use for compression, which by default is `1`.
231 As `ZSTD_CLEVEL` and `ZSTD_NBTHREADS` only replace the default compression level
233 `-#` for compression level and `-T#` for number of threads.
238 the compression ratio for files with long matches at a large distance (up to the
239 maximum window size, `128 MiB`) while still maintaining compression speed.
247 Below are graphs comparing the compression speed, compression ratio, and
267 On this file, the compression ratio improves significantly with minimal impact
268 on compression speed, and the decompression speed doubles.
271 the [Silesia compression corpus]) will likely lead to a deterioration in
272 compression speed (for lower levels) with minimal change in compression ratio.
274 The below table illustrates this on the [Silesia compression corpus].
276 [Silesia compression corpus]: http://sun.aei.polsl.pl/~sdeor/index.php?page=silesia
294 `zstdgrep` is _not_ compatible with dictionary compression.