randomblue has asked for the wisdom of the Perl Monks concerning the following question:
Is there a way to unload a module from memory while the program is "sleeping"? If so, would this give the memory back to the operating system? (judging from other comments on this site, I think not, but maybe someone can give me a better understanding of it).
Some of themodules are used only used when certain options are enabled. Is it a good practice to do this: ?
Also, if I do "use Thingy" inside a subroutine, will this in any way affect the scope within which I can use the module? Will it affect memory use?if (Option{blah} enabled) { use Win32::Blah; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(tye)Re: Modules and memory use
by tye (Sage) on Jan 19, 2001 at 22:26 UTC | |
|
Re: Modules and memory use
by davorg (Chancellor) on Jan 19, 2001 at 22:06 UTC | |
|
Re: Modules and memory use
by dave_aiello (Pilgrim) on Jan 20, 2001 at 11:18 UTC | |
|
Re: Modules and memory use
by repson (Chaplain) on Jan 20, 2001 at 13:56 UTC |