我最初尝试尝试通过 Thread::Queue 发送哈希对象,但根据此链接,我的 Thread::Queue 和 threads::shared 版本太旧了。不幸的是,由于我正在测试的系统不是我的,我无法升级。
然后我尝试使用一个通用数组来存储我的哈希值。这是到目前为止的代码:
#!/usr/bin/perl
use strict;
use warnings;
use threads;
use Thread::Queue;
use constant NUM_WORKERS => 10;
my @out_array;
test1();
sub test1
{
my $in_queue = Thread::Queue->new();
foreach (1..NUM_WORKERS) {
async {
while (my $job = $in_queue->dequeue()) {
test2($job);
}
};
}
my @sentiments = ("Axe Murderer", "Mauler", "Babyface", "Dragon");
$in_queue->enqueue(@sentiments);
$in_queue->enqueue(undef) for 1..NUM_WORKERS;
$_->join() for threads->list();
foreach my $element (@out_array) {
print "element: $element\n";
}
}
sub test2
{
my $string = $_[0];
my %hash = (Skeleton => $string);
push @out_array, \%hash;
}
但是,在程序结束时,@out_array
总是为空。如果我删除脚本的线程部分,则@out_array
正确填充。我怀疑我在这里错误地实现了线程。
在这种情况下,我将如何正确填充@out_array
?