How can I implement lazy module loading in Perl?
I've seen similar things in python and implementation is somewhat simpler, but in Perl I think this would be a bit harder.
|
How can I implement lazy module loading in Perl? I've seen similar things in python and implementation is somewhat simpler, but in Perl I think this would be a bit harder. |
|||||||||
|
Load module when you wantIf you need to load whole module at runtime you use
Load module when its functions are usedYou can also use
Load function only when it's usedThere is also I also recommend to read coresponding recipes from Perl Cookbook. |
|||||||||||||||
|