Support Ukraine 🇺🇦 Help Provide Humanitarian Aid to Ukraine .

Watch Introductory Video

Benchmarks

For reference, several fast compression algorithms were tested and compared on a desktop featuring a Core i7-9700K CPU @ 4.9GHz and running Ubuntu 24.04 (Linux 6.8.0-53-generic), using lzbench, an open-source in-memory benchmark by @inikep compiled with gcc 14.2.0, on the Silesia compression corpus.

Compressor name Ratio Compression Decompress.
zstd 1.5.7 -1 2.896 510 MB/s 1550 MB/s
zlib 1.3.1 -1 2.743 105 MB/s 390 MB/s
brotli 1.1.0 -0 2.702 400 MB/s 425 MB/s
zstd 1.5.7 --fast=1 2.439 545 MB/s 1850 MB/s
zstd 1.5.7 --fast=3 2.241 635 MB/s 1980 MB/s
quicklz 1.5.0 -1 2.238 520 MB/s 750 MB/s
lzo1x 2.10 -1 2.106 650 MB/s 780 MB/s
lz4 1.10.0 2.101 675 MB/s 3850 MB/s
snappy 1.2.1 2.089 520 MB/s 1500 MB/s
lzf 3.6 -1 2.077 410 MB/s 820 MB/s

The negative compression levels, specified with --fast=#, offer faster compression and decompression speed in exchange for some loss in compression ratio compared to level 1, as seen in the table above.

Zstd can trade compression speed for stronger compression ratios. It is configurable by small increment. Decompression speed is preserved and remain roughly the same at all settings, a property shared by most LZ compression algorithms, such as zlib or lzma.

The following tests were run on a server running Linux Debian (Linux version 4.14.0-3-amd64) with a Core i7-6700K CPU @ 4.0GHz, using lzbench, an open-source in-memory benchmark by @inikep compiled with gcc 7.3.0, on the Silesia compression corpus.

Compression Speed vs Ratio Decompression Speed
Compression Speed vs Ratio Decompression Speed

Several algorithms can produce higher compression ratio but at slower speed, falling outside of the graph. For a larger picture including very slow modes, click on this link .

The case for Small Data compression

Previous charts provide results applicable to typical file and stream scenarios (several MB). Small data comes with different perspectives.

The smaller the amount of data to compress, the more difficult it is to compress. This problem is common to all compression algorithms, and reason is, compression algorithms learn from past data how to compress future data. But at the beginning of a new data set, there is no "past" to build upon.

To solve this situation, Zstd offers a training mode, which can be used to tune the algorithm for a selected type of data. Training Zstandard is achieved by provide it with a few samples (one file per sample). The result of this training is stored in a file called "dictionary", which must be loaded before compression and decompression. Using this dictionary, the compression ratio achievable on small data improves dramatically.

The following example uses the github-users sample set, created from github public API. It consists of roughly 10K records weighting about 1KB each.

Compression Ratio Compression Speed Decompression Speed
Compression Ratio Compression Speed Decompression Speed

These compression gains are achieved while simultaneously providing faster compression and decompression speeds.

Training works if there is some correlation in a family of small data samples. The more data-specific a dictionary is, the more efficient it is (there is no universal dictionary). Hence, deploying one dictionary per type of data will provide the greatest benefits. Dictionary gains are mostly effective in the first few KB. Then, the compression algorithm will gradually use previously decoded content to better compress the rest of the file.

A rich API set :

Zstandard API is designed with learning curve in mind. At the top, you'll find simple methods, using trivial arguments and behavior. Then, at each new paragraph, the API introduces new concepts and parameters, giving gradually more control for advanced usages.

You can learn more about Zstandard API by reading its documentation.


Multiple programming languages

Should you need Zstandard in different language than reference C, here is a list of known bindings and ports provided by great authors. All versions support the Zstandard format specification and are therefore interoperable. Many versions listed below are bindings to the reference C library. There are also full re-implementation of the algorithm in the target language which are explicitly labelled as Ports.

Language Author URL
Python (full) Gregory Szorc https://pypi.python.org/pypi/zstandard
Python (simple) Sergey Dryabzhinsky https://github.com/sergey-dryabzhinsky/python-zstd
Python (bz2 api) Ma Lin https://pypi.org/project/pyzstd
Rust Alexandre Bury https://crates.io/crates/zstd
Rust (Port) Moritz Borcherding https://github.com/KillingSpark/zstd-rs
Java Luben Karavelov https://github.com/luben/zstd-jni
Java (Port) Martin Traverso https://github.com/airlift/aircompressor/tree/master/src/main/java/io/airlift/compress/zstd
C# SKB Kontur https://github.com/skbkontur/ZstdNet
C# (streaming) Bernhard Pichler https://github.com/bp74/Zstandard.Net
C# (signed) Tyler Young https://github.com/ImpromptuNinjas/ZStd
C# (Port) Oleg Stepanischev https://github.com/oleg-st/ZstdSharp
C (winXP) jimmyleocn https://github.com/jimmyleocn/zstd-winxp
Javascript (emscripten) Yoshihito https://www.npmjs.com/package/zstd-codec
Javascript (decoder, Port) Arjun Barrett https://www.npmjs.com/package/fzstd
Javascript (decoder, wasm) Don McCurdy https://www.npmjs.com/package/zstddec
Javascript (wasm, asm) Szende, Tamas, Szabo & Zana https://www.npmjs.com/package/@oneidentity/zstd-js
Node.js MongoDB-js https://github.com/mongodb-js/zstd
Node.js Tyler Stiene https://www.npmjs.com/package/simple-zstd
Go (Port) Klaus Post https://github.com/klauspost/compress/tree/master/zstd#zstd
Go Vianney Tran https://github.com/DataDog/zstd
Go (+dict) Aliaksandr Valialkin https://github.com/valyala/gozstd
PHP Kamijo https://github.com/kjdev/php-ext-zstd
PHP John Wedgbury https://github.com/appoly/zstd-php
Fortran Philippe Engel https://github.com/interkosmos/fortran-zstd
Pascal Denis Anisimov https://github.com/DenisAnisimov/ZSTD.pas
Delphi Xelitan https://github.com/Xelitan/ZSTD-compression-decompression-for-Delphi-Lazarus
Swift Anatoli Peredera https://github.com/omniprog/SwiftZSTD
Ruby SpringMT https://github.com/SpringMT/zstd-ruby
Ruby (FFI) Michael Sievers https://github.com/msievers/zstandard-ruby
Ruby (stream) Andrew Aladjev https://rubygems.org/gems/ruby-zstds
R Konstantin Sorokin https://cran.r-project.org/web/packages/zstdr/index.html
Perl Jiro Nishiguchi https://metacpan.org/release/Compress-Zstd
Visual Basic 6 Tanner Helland https://github.com/tannerhelland/VB6-Compression
Objective C Micha Mazaheri https://github.com/luckymarmot/ZstdKit
Lisp Guillaume Le Vaillant https://github.com/glv2/cl-zstd
Ada John Marino https://github.com/jrmarino/zstd-ada
Dart Instantiations https://pub.dev/documentation/es_compression/latest/zstd/zstd-library.html
Scala (Port, decoder) Johannes Rudolph https://github.com/jrudolph/decoders/blob/main/src/main/scala/net/virtualvoid/codecs/zstd/Zstd.scala
Julia Kenta Sato https://github.com/bicycle1885/CodecZstd.jl
D Masahiro Nakagawa https://code.dlang.org/packages/zstd
Lua Soojin Nam https://github.com/sjnam/lua-resty-zstd
Haskell Bryan O'Sullivan https://github.com/facebookexperimental/hs-zstd
Erlang Silviu Caragea https://github.com/silviucpp/ezstd
Erlang Yuki Ito https://hex.pm/packages/zstd
Tcl D. Bohdan https://wiki.tcl-lang.org/48788
SmallTalk Instantiations http://www.instantiations.com/resources/goodies.html#instantiations
Elixir chenzhuoyu https://hex.pm/packages/ex_zstd
OCaml Jane Street https://opam.ocaml.org/packages/zstandard/
Crystal @didactic-drunk https://github.com/didactic-drunk/zstd.cr
Nim wltsmrz https://github.com/wltsmrz/nim_zstd
Racket Vincent Lee https://pkgs.racket-lang.org/package/zstd


Graphical User Interfaces

Tino Reichardt has created a version of 7-zip archive manager with Zstandard.

Denis Anisimov, of TC4shell fame, also developed a 7-zip plugin with Zstandard support.

Peazip is a free multi-platforms archiver by Giorgio Tani with support for Zstandard

WinRAR supports decoding of Zstandard files (as well as zip files using Zstandard encoder)

7-zip with Zstandard


Zstandard is used by :

Featured

Databases

File systems & storage

Web

Archives

Serialization

Network

Hardware

Games & Creation

Misc



Legal Privacy Terms Copyright © Meta Platforms, Inc.