Different compression methods in 7zip: Which is best suited for what task?

Use LZMA 2 unless you are looking to extract the archive on a system that cannot deal with LZMA 2 archives.

Generally speaking most modern compression algorithms give roughly the same compression, and with regard to the number of cores that you can use at once, it is up to you to decide how many you want to use. Generally speaking (unless you are creating large archives) there is no reason to need more than one though. In addition, with multiple cores doing the compression, the bottleneck may become the hard drive.


Lzma2 is faster when using 4 or more cores and it gives better compression. This document explains it all.


7-Zip (at least as of 2019-09-27) has a built-in Help document with a very, very nice explanation of the various settings you can choose and what, in general, each is good for.

There's no benchmark results or anything, but it was enough information to instill some confidence in me that I was picking "good enough" and not "accidentally awful" settings.

The Help document is available through the 7-Zip File Manager as well as the Add to Archive dialog box.

The "Contents" path to the page I found useful (which opens up directly from the Add to Archive dialog box) is:

File Manager / Plugins / 7-Zip / Add to Archive Dialog Box

enter image description here

Here is a rough copy/paste of the compression method section:

Method Description

  • LZMA
    • It's base compression method for 7z format. Even old versions of 7-Zip can decompress archives created with LZMA method. It provides high compression ratio and very fast decompression.
  • LZMA2
    • Default compression method of 7z format. LZMA2 is LZMA-based compression method. It provides better multithreading support than LZMA. But compression ratio can be worse in some cases. For best compression ratio with LZMA2 use 1 or 2 CPU threads. If you use LZMA2 with more than 2 threads, 7-zip splits data to chunks and compresses these chunks independently (2 threads per each chunk).
  • PPMd
    • Dmitry Shkarin's PPMdH algorithm with small changes. Usually it provides high compression ratio and high speed for text files.
  • BZip2
    • Standard compression method based on BWT algorithm. Usually it provides high speed and pretty good compression ratio for text files.
  • Deflate
    • Standard compression method of ZIP and GZip formats. Compression ratio is not too high. But it provides pretty fast compressing and decompressing. Deflate method supports only 32 KB dictionary.
  • Deflate64
    • Modified version of Deflate algorithm with bigger dictionary (64KB).