On Sun Aug 05 16:44:44 2018, PMQS wrote:
Show quoted text> Zstandard is on my list to keep an eye on. Haven't seen it used in the
> wild, or had anyone expressing interest in it (until now).
>
> Are you aware of anything that makes use of this format?
Btrfs uses it for on-disk compression (they even changed the licence to get it into the kernel) and it's moving quite fast into similar application areas (good compression at high speed and _really_ fast uncompression):
http://facebook.github.io/zstd/#references
I am mostly interested in getting something that compresses almost as good as LZMA (if a tad slower), but decompresses faster into memory than you could read it from external filers. That way, you essentially get the compression ratio as a speedup on read.
The existing Perl binding is here:
https://metacpan.org/release/Compress-Zstd
It uses the streaming API and looks OK to me in general, but I really want to have it available via AnyUncompress in order to keep supporting all other formats without adding extra code.