Module compression

Module compression 

Source
Expand description

Native compression algorithms without external dependencies

High-performance compression optimized for columnar data with SIMD acceleration.

Re-exports§

pub use rle::RleEncoder;
pub use rle::RleDecoder;
pub use delta::DeltaEncoder;
pub use dictionary::DictionaryEncoder;
pub use dictionary::DictionaryEncoderI64;
pub use dictionary::DictionaryEncoderF64;
pub use bitpack::BitPackEncoder;

Modules§

bitpack
Bit-Packing implementation
delta
Delta Encoding implementation
dictionary
Dictionary Encoding implementation
rle
Run-Length Encoding (RLE) implementation

Enums§

Codec
Compression codec type
Level
Compression level

Functions§

auto_codec
Auto-select best codec for data
compress
Compress data using specified codec
decompress
Decompress data using specified codec