Hi All!
I have a perl script which uses these modules:
ProcessAdapter. pl
To load them, perl consumes around 15Mb RAM.
How can I reduce the amount of used memory?
I am running this script in parallel. Therefore, I need lots of available memory.
Can someone help me on this?
Cheers,
Carlos
I have a perl script which uses these modules:
ProcessAdapter. pl
Code:
use File::Copy; use FileHandle; use Class::Struct; use Win32::Process; use Win32::Process::Info::WMI; use Win32::ODBC; use XML::Simple; use XML::DOM; XML::DOM::setTagCompression (\&my_tag_compression); use Mail::Sender; use Fcntl qw(:flock :seek); use lib qw( blib/lib lib ); use Archive::Zip;
How can I reduce the amount of used memory?
I am running this script in parallel. Therefore, I need lots of available memory.
Can someone help me on this?
Cheers,
Carlos