I know that gzip supports 9 compression levels, from fast to strong. The decompression algorithm does not care about the compression level at all. Is it possible to reach a "higher" level than 9 by another tool than the common gzip application? I mean, someone could have created a modified gzip compressor which is more effective than gzip level 9.
The background is that I have a webserver which hosts compressed gz files. It would be nice to reduce the sizes of those files and I do not care how long my server has to work in order to reduce those files even by 1 byte at the end. It is a one-time task, so it does not matter.
Is there something like a hacked version of gzip supporting higher levels or offering higher compression?