Technology Jul 15, 2026 · 1 min read

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

I've spent the last few months working on this codec.It has the following characteristics: - SOTA decompression throughput in its ratio class - Decent ratios (comparable to LZ4 at high effort levels) - Slow compression Most of the gains can be attributed to reducing branches and making decomp...

HA
Hacker News
by nonadhocproblem
Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

I've spent the last few months working on this codec.

It has the following characteristics:

  - SOTA decompression throughput in its ratio class
  - Decent ratios (comparable to LZ4 at high effort levels)
  - Slow compression
Most of the gains can be attributed to reducing branches and making decompression very friendly to out-of-order cores, by using a smart format.

Results on the tarred Silesia corpus on Intel x86-64 follow:

  codec       decode      ratio    encode
  misa77 -0   5219 MB/s   42.64%   54.5 MB/s
  misa77 -1   4274 MB/s   39.65%   51.2 MB/s
  lz4         2505 MB/s   47.59%   371 MB/s
  lz4hc -12   2531 MB/s   36.45%   7.31 MB/s


Comments URL: https://news.ycombinator.com/item?id=48922838

Points: 16

# Comments: 1

HA
Source

This article was originally published by Hacker News and written by nonadhocproblem.

Read original article on Hacker News
Back to Discover

Reading List