- 论坛徽章:
- 0
|
本帖最后由 zhangmaocun 于 2013-04-01 17:11 编辑
回复 17# laputa73
上面的这样写, 把一个数组里的数据每20w行生成一个进程去处理,没执行了一个进程,清空一下临时数组,可是 @temp=();这句总是不了啊。。。大大给优化优化
my $pm = Parallel::ForkManager->new(30);
foreach my $lines(@all_line) {
$rows++;
push(@temp,$lines);
if ( ($rows % 200000)==0 || $rows==@all_line) {
$id++;
print "$id\n";
my $temp=\@temp;
$pm ->start and next;
process($temp,$id);
@temp=();
$pm->finish;
}
}
$pm->wait_all_children;
print "ok\n";
中间再增加个临时数组:这样能实现,感觉有点不爽。。。
my $pm = Parallel::ForkManager->new(30);
foreach my $lines(@all_line) {
$rows++;
push(@temp,$lines);
if ( ($rows % 200000)==0 || $rows==@all_line) {
$id++;
print "$id\n";
my @temp1=@temp;
my $temp=\@temp1;
undef(@temp);
$pm ->start and next;
process($temp,$id);
@temp=();
$pm->finish;
}
}
$pm->wait_all_children;
print "ok\n"; |
|