GitHub - welcome-to-the-sunny-side/misa77: Ridiculously fast decompression at good ratios. misa77 is 1.5-3x faster than LZ4 for decompression on x86 and ARM (with better ratios!).
misa77 (0.2.0)
misa77 is an LZ-based codec that targets the write-once, read-many niche. In particular, it aims to satisfy the following criteria:
Extremely high decompression throughput (single-threaded).
Modest compression ratios (it has no entropy backend, so one can obviously not compare it to something like zstd, but LZ4 at high effort levels is a good reference point).
Constant memory use, regardless of input size (<= 5 MB across all compression modes, and 0 MB for decompression).
Slow com...
Read more at github.com