Added advanced compression functions
4 files changed
tree: 9184809daac16829967be338b71f5ff4343fc8e4
  1. lib/
  2. programs/
  3. visual/
  4. .gitattributes
  5. .gitignore
  6. .travis.yml
  7. Makefile
  8. NEWS
  9. README.md
README.md

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 nor extreme speed.

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 i7-5600U @ 2.6 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.09921320
zstd2.871255531
zlib 1.2.8 -12.73070300
LZ4 HC r1312.720252100
QuickLZ 1.5.1b62.237370415
LZO 2.062.106400580
Snappy 1.1.02.0913301100
LZ4 r1312.1014502100
LZF 3.62.077200560

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 more than >500 MB/s per core. Obviously, your exact mileage will vary depending on your target system.

Zstd compression speed will be configurable to fit different situations. The first available version is the fast one, at ~250 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, keeping decompression properties intact. “Offline compression”, where compression time is of little importance because the content is only compressed once and decompressed many times, will likely prefer this setup.

Note that high compression derivatives still have to be developed. It's a complex area which will require time and benefit from contributions.

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 Huff0 and FSE, from Finite State Entrop library.

Zstd has not yet reached “stable” status. Specifically, it doesn't guarantee yet that its current compressed format will remain stable and supported in future versions. It may still change to adapt further optimizations still being investigated. However, the library starts to be pretty robust, able to withstand hazards situations, including invalid input. The library reliability has been tested using Fuzz Testing, using both internal tools and external ones. Therefore, you can now safely test zstd, even within production environments.

“Stable Format” is projected sometimes early 2016.

Branch Policy

The “dev” branch is the one where all contributions will be merged before reaching “master”. If you plan to propose a patch, please commit into the “dev” branch or its own feature branch. Direct commit to “master” are not permitted.