in reply to Re^2: slow startup for some common modules? (autodie, Pod::Usage, Getopt::Long))
in thread slow startup for some common modules? (autodie, Pod::Usage, Getopt::Long))
The eval q{use Pod::Usage}; will work, though those who are allergic to stringy evals will probably prefer something more like
require Pod::Usage; Pod::Usage::pod2usage( ... );
|
|---|