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…
85 in a file selected with the `-o` option (default name is `dictionary`),
88 Using a dictionary, the compression ratio achievable on small data improves dramatically.
90 …ary work if there is some correlation in a family of small data (there is no universal dictionary).
91 Hence, deploying one dictionary per type of data will provide the greater benefits.
95 Usage of the dictionary builder and created dictionaries with CLI:
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`
140 --no-dictID : don't write dictID into header (dictionary compression)
152 --train ## : create a dictionary from a training set of files
155 -o file : `file` is dictionary name (default: dictionary)
156 --maxdict=# : limit dictionary to specified size (default: 112640)
157 --dictID=# : force dictionary ID to specified value (default: random)