You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Perl client for Disque, an in-memory, distributed job queue
Fast usage:
For those who want to see things working right now.
Open a new terminal and do:
$ perl examples/producer.pl
Open another terminal and do:
$ perl examples/consumer.pl
You will start seeing the new jobs arriving on the 'consumer' terminal.
Also you can set up multiple instances of disque cluster and shut down
some of them and you will see how the clients will automatically reconnect
to any available disque server.
Usage
Connection:
perl-disque will try to connect to any available server in the order that has been set.
If there is no disque instance available, the client will generate a connection error and will abort.
# Defaults to $ENV{DISQUE_SERVER} or 127.0.0.1:7711use Disque;
my$disque = Disque->new;
To send a new job just do
$disque->add_job('test','job_1', 0);
Documentation
You can use this library with single or multi-node clusters.
Connection:
When you invoke "new()" you can choose which method you will use to connect to the cluster;
of course, this only will happen if there is more than 1 node specified.
By default, as Salvatore specified
in the doc, the lib will try to connect to any available server in a random way.
But also if you don't want to connect to the server randomly you can specify
the param "disable_random_connect => 1" in new() sub, for example: