Interesting, I always assumed they would be using a pretty optimal algorithm with their .tar.bz2 format, because they obviously benefit quite a bit from smaller downloads. Good to know that .tar.xz is actually better.
XZ is quite slow for compression when single threaded. When run in parallel it uses a significant amount of RAM. It creates some of the smallest files and is fast to decompress compared to other well-compressed alternatives.
Interesting, I always assumed they would be using a pretty optimal algorithm with their
.tar.bz2
format, because they obviously benefit quite a bit from smaller downloads. Good to know that.tar.xz
is actually better.XZ is quite slow for compression when single threaded. When run in parallel it uses a significant amount of RAM. It creates some of the smallest files and is fast to decompress compared to other well-compressed alternatives.
Source: https://linuxreviews.org/Comparison_of_Compression_Algorithms
Thanks. 🙂