Puede usar Thread::Queue o cualquier otro de este:¿Existe un módulo de multiprocesamiento para Perl?
Si el antiguo sistema estaba escrito en Perl de esta manera, podrías reutilizar la mayor parte de él.
Ejemplo no funcional:
use strict;
use warnings;
use threads;
use Thread::Queue;
my $q = Thread::Queue->new(); # A new empty queue
# Worker thread
my @thrs = threads->create(sub {
while (my $item = $q->dequeue()) {
# Do work on $item
}
})->detach() for 1..10;#for 10 threads
my $dbh = ...
while (1){
#get items from db
my @items = get_items_from_db($dbh);
# Send work to the thread
$q->enqueue(@items);
print "Pending items: "$q->pending()."\n";
sleep 15;#check DB in every 15 secs
}