Lines Matching +full:zlib +full:- +full:dev

1 <p align="center"><img src="https://raw.githubusercontent.com/facebook/zstd/dev/doc/images/zstd_log…
4 targeting real-time compression scenarios at zlib-level and better compression ratios.
8 This repository represents the reference implementation, provided as an open-source dual [BSD](LICE…
11 a list of known ports and bindings is provided on [Zstandard homepage](http://www.zstd.net/#other-l…
21 [travisDevBadge]: https://api.travis-ci.com/facebook/zstd.svg?branch=dev "Continuous Integration te…
22 [travisLink]: https://travis-ci.com/facebook/zstd
23 [AppveyorDevBadge]: https://ci.appveyor.com/api/projects/status/xt38wbdxjk5mrbem/branch/dev?svg=tru…
24 [AppveyorLink]: https://ci.appveyor.com/project/YannCollet/zstd-p0yf0
25 [CircleDevBadge]: https://circleci.com/gh/facebook/zstd/tree/dev.svg?style=shield "Short test suite"
27 [CirrusDevBadge]: https://api.cirrus-ci.com/github/facebook/zstd.svg?branch=dev
28 [CirrusLink]: https://cirrus-ci.com/github/facebook/zstd
29 [OSSFuzzBadge]: https://oss-fuzz-build-logs.storage.googleapis.com/badges/zstd.svg
30 [OSSFuzzLink]: https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:zstd
35 on a desktop running Ubuntu 20.04 (`Linux 5.11.0-41-generic`),
36 with a Core i7-9700K CPU @ 4.9GHz,
37 using [lzbench], an open-source in-memory benchmark by @inikep
46 | --------------- | ------| -----------| ---------- |
47 | **zstd 1.5.1 -1** | 2.887 | 530 MB/s | 1700 MB/s |
48 | [zlib] 1.2.11 -1 | 2.743 | 95 MB/s | 400 MB/s |
49 | brotli 1.0.9 -0 | 2.702 | 395 MB/s | 450 MB/s |
50 | **zstd 1.5.1 --fast=1** | 2.437 | 600 MB/s | 2150 MB/s |
51 | **zstd 1.5.1 --fast=3** | 2.239 | 670 MB/s | 2250 MB/s |
52 | quicklz 1.5.0 -1 | 2.238 | 540 MB/s | 760 MB/s |
53 | **zstd 1.5.1 --fast=4** | 2.148 | 710 MB/s | 2300 MB/s |
54 | lzo1x 2.10 -1 | 2.106 | 660 MB/s | 845 MB/s |
56 | lzf 3.6 -1 | 2.077 | 410 MB/s | 830 MB/s |
59 [zlib]: http://www.zlib.net/
62 The negative compression levels, specified with `--fast=#`,
67 Speed vs Compression trade-off is configurable by small increments.
69 a property shared by most LZ compression algorithms, such as [zlib] or lzma.
72 on a server running Linux Debian (`Linux version 4.14.0-3-amd64`)
73 with a Core i7-6700K CPU @ 4.0GHz,
74 using [lzbench], an open-source in-memory benchmark by @inikep
79 ---------------------------|--------------------
96-users` [sample set](https://github.com/facebook/zstd/releases/tag/v1.1.3), created from [github p…
100 ------------------|-------------------|--------------------
101 …ges/dict-cr.png "Compression Ratio") | ![Compression Speed](doc/images/dict-cs.png "Compression Sp…
106 Training works if there is some correlation in a family of small data samples. The more data-specif…
114 `zstd --train FullPathToTrainingSet/* -o dictionaryName`
118 `zstd -D dictionaryName FILE`
122 `zstd -D dictionaryName --decompress FILE.zst`
133 - `make install` : create and install zstd cli, library and man pages
134 - `make check` : create and run `zstd`, tests its behavior on local platform
159 ./bootstrap-vcpkg.sh
169 - Projects for Visual Studio 2005, 2008 and 2010.
171 - Automated build scripts for Visual compiler by [@KrzysFR](https://github.com/KrzysFR), in `build/…
177 The output binary will be in `buck-out/gen/programs/`.
192 Zstandard is dual-licensed under [BSD](LICENSE) and [GPLv2](COPYING).
196 The `dev` branch is the one where all contributions are merged before reaching `release`.
197 If you plan to propose a patch, please commit into the `dev` branch, or its own feature branch.