Skip to main content

Module compress

Module compress 

Source
Expand description

DX-Compress: Integrated LZ4 Streaming

rkyv has no built-in compression. DX-Compress streams LZ4 with zero-copy.

Result: 70% smaller wire size with negligible overhead

Structs§

DxCompressed
Compressed DX-Machine buffer
StreamCompressor
Streaming compressor for large data
StreamDecompressor
Streaming decompressor

Enums§

CompressionLevel
Compression level for LZ4

Functions§

compress_lz4
Compress data using LZ4 (fastest compression)
compress_zstd
Compress data using Zstd with default level (3)
compress_zstd_level
Compress data using Zstd with specified compression level
decompress_lz4
Decompress LZ4-compressed data
decompress_zstd
Decompress Zstd-compressed data