ZSTD_compressionParameters

Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
version(BindZSTD_Static)
extern (C) @nogc nothrow
struct ZSTD_compressionParameters {}

Members

Variables

chainLog
uint chainLog;

< fully searched segment : larger == more compression, slower, more memory (useless for fast)

hashLog
uint hashLog;

< dispatch table : larger == faster, more memory

searchLength
uint searchLength;

< match length searched : larger == faster decompression, sometimes less compression

searchLog
uint searchLog;

< nb of searches : larger == more compression, slower

strategy
ZSTD_strategy strategy;
Undocumented in source.
targetLength
uint targetLength;

< acceptable match size for optimal parser (only) : larger == more compression, slower

windowLog
uint windowLog;

< largest match distance : larger == more compression, more memory needed during decompression

Meta