in reply to Re: Queuing in multithread context
in thread Queuing in multithread context

Bah, typo, idea is
### workQs , workerQs my @workers = map { my $workQ = Thread::Queue->new; threads->create( \&Worker, $workQ, $resultQ ); $workQ; } 1..10;