I read it through and It appears that seperating the memory consuming part into another script then exec it is one solution. but I don't see the memory gets released by doing it.
I am using Parallel::ForkManager in the file1.pl, btw.
file1.pl
use Parallel::ForkManager;
my $pm = new Parallel::ForkManager(4);
foreach my $base_dir (@base_dirs) {
my $storable_file = $storable_dir.$f;
$pm->start and next; # do the fork
`/home/qiang/file2.pl $storable_file $base_dir`;
$pm->finish;
}
$pm->wait_all_children;
file2.pl
use File::Find;
use Storable qw(store retrieve);
my $storable_file = shift;
my $base_dir = shift;
my @usr_dirs = map {chomp;$base_dir."/".$_} `/bin/ls $base_dir`;
my $mbox = {};
find(\&wanted,@usr_dirs);
store $mbox, $storable_file or die "Can't store !\n";
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.