ZSTD_c_minMatch constant
int
const ZSTD_c_minMatch
Minimum size of searched matches. Note that Zstandard can still find matches of smaller size, it just tweaks its search algorithm to look for this size and larger. Larger values increase compression and decompression speed, but decrease ratio. Must be clamped between ZSTD_MINMATCH_MIN and ZSTD_MINMATCH_MAX. Note that currently, for all strategies < btopt, effective minimum is 4. , for all strategies > fast, effective maximum is 6. Special: value 0 means "use default minMatchLength".
Implementation
static const int ZSTD_c_minMatch = 105;