Lines Matching refs:dictionary

6 - `zstd` : default CLI supporting gzip-like arguments; includes dictionary builder, benchmark, and …
8 - `zstd-small` : CLI optimized for minimal size; no dictionary builder, no benchmark, and no suppor…
68 - __ZSTD_NODICT__ : `zstd` cli will be compiled without support for the integrated dictionary build…
110 in a file selected with the `-o` option (default name is `dictionary`),
113 Using a dictionary, the compression ratio achievable on small data improves dramatically.
115 …ary work if there is some correlation in a family of small data (there is no universal dictionary).
116 Hence, deploying one dictionary per type of data will provide the greater benefits.
120 Usage of the dictionary builder and created dictionaries with CLI:
122 1. Create the dictionary : `zstd --train PathToTrainingSet/* -o dictionaryName`
123 2. Compress with the dictionary: `zstd FILE -D dictionaryName`
124 3. Decompress with the dictionary: `zstd --decompress FILE.zst -D dictionaryName`
184 --no-dictID : don't write dictID into header (dictionary compression only)
199 --train ## : create a dictionary from a training set of files
203 -o DICT : DICT is dictionary name (default: dictionary)
204 --maxdict=# : limit dictionary to specified size (default: 112640)
205 --dictID=# : force dictionary ID to specified value (default: random)
296 `zstdgrep` is _not_ compatible with dictionary compression.
298 To search into a file compressed with a dictionary,
301 `zstdcat -D dictionary -qc -- file.zst | grep pattern`