in reply to Re^3: Distributed FIFO queues?
in thread Distributed FIFO queues?
use Gearman::Client; my $client = Gearman::Client->new; $client->job_servers('127.0.0.1', '10.0.0.1'); $taskset->add_task( "add" => "1+2", { on_complete => sub { ... } });
It's still pretty magical imo, but nolonger seems like some kind of dark arts.
-Paul
|
|---|