Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reasonable compression block-size

What is a reasonable minimum compression block-size for compression ratio when using LZO-like algorithm? I expect that compressing 32B would be useless but compressing 512B might be good. Am I too far? Please, no "check yourself answers" :)

like image 396
Cartesius00 Avatar asked Jun 04 '26 14:06

Cartesius00


1 Answers

This paper, Table I, shows blocks sizes of 245 to 8196 give compression of 3.3 to 4.3 for ecommerce web data. So 256 is enough to be useful, but more helps. For the Explorer binaries, the ratios went from 1.5 to 2.1 over that range.

like image 160
Brian Carlton Avatar answered Jun 07 '26 09:06

Brian Carlton