in reply to Re: Queuing in multithread contextin thread Queuing in multithread context
### workQs , workerQs my @workers = map { my $workQ = Thread::Queue->new; threads->create( \&Worker, $workQ, $resultQ ); $workQ; } 1..10; [download]