Compress::Snappy - (de)compress data in Google's Snappy compression format
libsnappy-dev
or equivalent needs to be installed for this to
work. Issue
sudo apt-get install libsnappy-dev
or equivalent order in other operatins systems or distros to do so.
my Buf $compressed = Compress::Snappy::compress("hello, world");
my Bool $valid = Compress::Snappy::validate($compressed);
my Buf $decompressed = Compress::Snappy::decompress($compressed);
See also examples/test.p6
This module uses NativeCall to provide bindings to the C API for libsnappy, a compression library with an emphasis on speed over compression.
Main compression function. Returns a Buf of compressed data.
Convenience function to make a Str to an encoded Blob and compress that. Encoding defaults to utf-8 if not specified.
Decompress provided data to a Buf. If an optional $encoding is specified, will decode the Buf and return a Str instead.
Returns if the compressed data is valid, without fully decompressing it.