zstd/contrib/adaptive-compression
2017-07-28 15:30:46 -07:00
..
adapt.c patched style errors, add ability to bound compression level variation 2017-07-28 15:30:46 -07:00
datagencli.c added some tests for correctness, time, and compression ratio 2017-07-13 13:50:23 -07:00
Makefile moved debug statements to a compiler flag 2017-07-25 14:08:39 -07:00
README.md building on readme, added another help tip in the menu 2017-07-25 17:47:02 -07:00
test-correctness.sh set the window log value before performing compression 2017-07-26 14:29:59 -07:00
test-performance.sh updated tests to use different seeds when executing different tests 2017-07-14 16:29:29 -07:00

###Summary

adapt is a new compression tool targeted at optimizing performance across network connections. The tool aims at sensing network speeds and adapting compression level based on network or pipe speeds. In situations where the compression level does not appropriately match the network/pipe speed, the compression may be bottlenecking the entire pipeline or the files may not be compressed as much as they potentially could be, therefore losing efficiency. It also becomes quite impractical to manually measure and set compression level, therefore the tool does it for you.

###Using adapt

In order to build and use the tool, you can simply run make adapt in the adaptive-compression directory under contrib. This will generate an executable available for use.

###Options -oFILE : write output to FILE

-i# : provide initial compression level

-h : display help/information

-f : force the compression level to stay constant

-c : force write to stdout

-p : hide progress bar

-q : quiet mode -- do not show progress bar or other information

###Benchmarking / Test results