Short answer: No.
Long answer: Perl uses the modules, e.g. loading it into memory, parsing and compiling it, when you need them. So just by having them installed on your computer, which is basically nothing other than having it copied to a place where the perl interpreter will find it, you will not experience any problems with running your system or the perl progam.Regards, C-Keen | [reply] |
Unless you use a module in a process, modules are
nothing more than disk filler. I guess it's conceivable that if
you had many thousands of mods installed, and you use'd
one that was in the last directory of @INC, things would slow down
while perl looked for the .pm file. That's easily worked
around though.
| [reply] [d/l] [select] |