What does the number after 7-zip's -m switch mean?
- by AndreKR
7-zip has a command line switch to set the compression method, -m followed by a number, e.g.
-m0=LZMA.
What does the number (0 in the example) mean? Different numbers produce slightly different compression results and performance:
time 7z -m0=LZMA -mx=9 -ms=on -mmt=off
real 0m2.292s
user 0m2.190s
sys 0m0.080s
time 7z -m1=LZMA -mx=9…