|
|
|
|
|
by o11c
201 days ago
|
|
This is missing a lot of context. What integer patterns does it do well on, and what patterns does it do poorly on? How many strategies does it support? It only mentions delta which is not compression. Huffman, RLE, variable-length encoding ... Does it really just "give up" at C/1024 compression if your input is a gigabyte of zeros? |
|
It only does delta and bitpacking now.
It should do fairly well for a bunch of zeroes because it does bitpacking.
I’m working on adding rle/ffor and also clarifying the strategy and making it flexible to modify the format internally so it won’t break API