gzip 9 takes 2x as long as 7 for +0.1% compression

This commit is contained in:
Jeff Atwood 2016-01-11 02:53:28 -08:00
parent cf4cb2126a
commit 770adbaf71
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ end
def gzip(path)
STDERR.puts "gzip #{path}"
STDERR.puts `gzip -f -c -9 #{path} > #{path}.gz`
STDERR.puts `gzip -f -c -7 #{path} > #{path}.gz`
end
def compress(from,to)