Subject: | trimming down imports/exports would gain speed and save memory |
Hello,
Thanks for your hard work on this excellent module!
My boss was doing some profiling and noticed that there was a lot of
unnecessary importing w/ IO::Compress. Here is a list:
http://koston.org/iocompress_symbol_imports.txt
We've been trimming our code down by changing this sort of thing:
use XYZ;
foo();
to
use XYZ ();
XYZ::foo();
and wanted to request the same w/ IO::Compress.
Would you be willing to look over a patch?
Thanks!
--
Dan Muey