Lines Matching refs:zstd

6 - `zstd` : default CLI supporting gzip-like arguments; includes dictionary builder, benchmark, and …
7 - `zstd_nolegacy` : Same as `zstd` but without support for legacy zstd formats
8 - `zstd-small` : CLI optimized for minimal size; no dictionary builder, no benchmark, and no suppor…
9 - `zstd-compress` : version of CLI which can only compress into zstd format
10 - `zstd-decompress` : version of CLI which can only decompress zstd format
14 `zstd` scope can be altered by modifying the following `make` variables :
18 Example : `make zstd HAVE_THREAD=0`
23 - __ZSTD_LEGACY_SUPPORT__ : `zstd` can decompress files compressed by older versions of `zstd`.
24 …Starting v0.8.0, all versions of `zstd` produce frames compliant with the [specification](../doc/z…
26 By default, `zstd` supports decoding legacy formats >= v0.4.0 (`ZSTD_LEGACY_SUPPORT=4`).
32 Note : `zstd` only supports decoding older formats, and cannot generate any legacy format.
34 - __HAVE_ZLIB__ : `zstd` can compress and decompress files in `.gz` format.
39 Example : `make zstd HAVE_ZLIB=0`
44 - __HAVE_LZMA__ : `zstd` can compress and decompress files in `.xz` and `.lzma` formats.
49 Example : `make zstd HAVE_LZMA=0`
54 - __HAVE_LZ4__ : `zstd` can compress and decompress files in `.lz4` formats.
59 Example : `make zstd HAVE_LZ4=0`
70 It's possible to invoke `zstd` through a symlink.
97 1. Create the dictionary : `zstd --train PathToTrainingSet/* -o dictionaryName`
98 2. Compress with the dictionary: `zstd FILE -D dictionaryName`
99 3. Decompress with the dictionary: `zstd --decompress FILE.zst -D dictionaryName`
103 CLI includes in-memory compression benchmark module for zstd.
118 zstd [args] [FILE(s)] [-o file]
137 -l : print information about zstd compressed files
192 | `zstd -1` | `5.065` | `284.8 MB/s` | `759.3 MB/s` |
193 | `zstd -5` | `5.826` | `124.9 MB/s` | `674.0 MB/s` |
194 | `zstd -10` | `6.504` | `29.5 MB/s` | `771.3 MB/s` |
195 | `zstd -1 --long` | `17.426` | `220.6 MB/s` | `1638.4 MB/s` |
196 | `zstd -5 --long` | `19.661` | `165.5 MB/s` | `1530.6 MB/s`|
197 | `zstd -10 --long`| `21.949` | `75.6 MB/s` | `1632.6 MB/s`|
212 | `zstd -1` | `2.878` | `231.7 MB/s` | `594.4 MB/s` |
213 | `zstd -1 --long` | `2.929` | `106.5 MB/s` | `517.9 MB/s` |
214 | `zstd -5` | `3.274` | `77.1 MB/s` | `464.2 MB/s` |
215 | `zstd -5 --long` | `3.319` | `51.7 MB/s` | `371.9 MB/s` |
216 | `zstd -10` | `3.523` | `16.4 MB/s` | `489.2 MB/s` |
217 | `zstd -10 --long`| `3.566` | `16.2 MB/s` | `415.7 MB/s` |