Zstd, short for Zstandard, is a new lossless compression algorithm, which provides both good compression ratio and speed for your standard compression needs. “Standard” translates into everyday situations which neither look for highest possible ratio (which LZMA and ZPAQ cover) nor extreme speeds (which LZ4 covers).

It is provided as a BSD-license package, hosted on Github.

BranchStatus
masterBuild Status
devBuild Status

For a taste of its performance, here are a few benchmark numbers, completed on a Core i5-4300U @ 1.9 GHz, using fsbench 0.14.3, an open-source benchmark program by m^2.

NameRatioC.speedD.speed
MB/sMB/s
zlib 1.2.8 -63.09918275
zstd2.872201498
zlib 1.2.8 -12.73058250
LZ4 HC r1272.720261720
QuickLZ 1.5.1b62.237323373
LZO 2.062.106351510
Snappy 1.1.02.091238964
LZ4 r1272.0843701590
LZF 3.62.077220502

An interesting feature of zstd is that it can qualify as both a reasonably strong compressor and a fast one.

Zstd delivers high decompression speed, at around ~500 MB/s per core. Obviously, your exact mileage will vary depending on your target system.

Zstd compression speed, on the other hand, can be configured to fit different situations. The first, fast, derivative offers ~200 MB/s per core, which is suitable for a few real-time scenarios. But similar to LZ4, zstd can offer derivatives trading compression time for compression ratio, while keeping decompression properties intact. “Offline compression”, where compression time is of little importance because the content is only compressed once and decompressed many times, is therefore within the scope.

Note that high compression derivatives still have to be developed. It's a complex area which will certainly benefit the contributions from a few experts.

Another property zstd is developed for is configurable memory requirement, with the objective to fit into low-memory configurations, or servers handling many connections in parallel.

Zstd entropy stage is provided by FSE (Finite State Entropy).

Zstd development is starting. So consider current results merely as early ones. The implementation will gradually evolve and improve overtime, especially during this first year. This is a phase which will depend a lot on user feedback, since these feedback will be key in deciding next priorities or features to add.

The “master” branch is reserved for stable release and betas. The “dev” branch is the one where all contributions will be merged. If you plan to propose a patch, please commit into the “dev” branch. Direct commit to “master” are not permitted. Feature branches will also exist, typically to introduce new requirements, and be temporarily available for testing before merge into “dev” branch.