LZ4 – Extremely fast compression
lz4.github.io
LZ4 – Extremely fast compression
1–10 of 115 posts
Re: LZ4 – Extremely fast compression
#2(Linking to this more for the overview than the Windows tool in itself.)
Re: LZ4 – Extremely fast compression
#3Re: LZ4 – Extremely fast compression
#4another contender is zstd: https://github.com/facebook/zstd . It typically offers better compression ratios than LZ4 at a slight (depending on your data) cost in speed. Additionally it offers a training mode to tune the algorithm to increase compression ratio on specific types of data, particularly useful for compression of small pieces of data.
Per the table at [0], zstd provides only a slight improvement in compression ratio, and in exchange is about half the speed of lz4.
They both have their place.
Re: LZ4 – Extremely fast compression
#5another contender is zstd: https://github.com/facebook/zstd . It typically offers better compression ratios than LZ4 at a slight (depending on your data) cost in speed. Additionally it offers a training mode to tune the algorithm to increase compression ratio on specific types of data, particularly useful for compression of small pieces of data.
Re: LZ4 – Extremely fast compression
#6Re: LZ4 – Extremely fast compression
#7another contender is zstd: https://github.com/facebook/zstd . It typically offers better compression ratios than LZ4 at a slight (depending on your data) cost in speed. Additionally it offers a training mode to tune the algorithm to increase compression ratio on specific types of data, particularly useful for compression of small pieces of data.
Yes, however there is usually no facility to train your compression algo with most tools using ZSTD.
Re: LZ4 – Extremely fast compression
#8Re: LZ4 – Extremely fast compression
#9another contender is zstd: https://github.com/facebook/zstd . It typically offers better compression ratios than LZ4 at a slight (depending on your data) cost in speed. Additionally it offers a training mode to tune the algorithm to increase compression ratio on specific types of data, particularly useful for compression of small pieces of data.
> It typically offers better compression ratios than LZ4 at a slight (depending on your data) cost in speed Per the table at [0], zstd provides only a slight improvement in compression ratio, and in exchange is about half the speed of lz4. They both have their place. 0. https://facebook.github.io/zstd/
zstd, brotly, snappy were seemingly all made with high end x86 capabilities in mind.
Re: LZ4 – Extremely fast compression
#10Earlier quoted context omitted.
> It typically offers better compression ratios than LZ4 at a slight (depending on your data) cost in speed Per the table at [0], zstd provides only a slight improvement in compression ratio, and in exchange is about half the speed of lz4. They both have their place. 0. https://facebook.github.io/zstd/
LZ4 has branchless decompression, and lower cache footprint, thus it can work on low end, and non-desktop CPUs equally well. zstd, brotly, snappy were seemingly all made with high end x86 capabilities in mind.
zstd is brilliant as well, but in terms of code base it's a whole other beast.