This package has been deprecated

Author message:

This library was renamed to disq

disque.js

0.1.3 • Public • Published

disque.js

A simple Disque client for Node.js and io.js.

Currently under development, but it's already usable and useful.

Inspired by redic.js (which is inspired by Redic).

Usage

var disque = require('disque.js');
var client = disque.connect(['127.0.0.1:7711', '127.0.0.1:7712']);
 
client.addjob('queue1', 'foo', 0, function(err, res) {
  if (err) return console.error(err);
 
  console.log('Added job with ID ' + res);
});
 
// Meanwhile in a parallel universe
client.getjob(['queue1'], function(err, jobs) {
  jobs.forEach(function(job) {
    var queue   = job[0]
      , id      = job[1]
      , payload = job[2];
 
    doVeryHeavyWork(payload);
 
    client.ackjob(id, function(err) {
      if (err) return console.error(err);
 
      console.log('Processed job ' + id);
    });
  });
});

If you need to use authentication, pass in the auth option:

var client = disque.connect('127.0.0.1:7711', { auth: 'foobar' });

Features

  • Automatic connection to the most convenient node in the cluster.

    While consuming jobs with disque.getjob, the client will periodically check which node is producing the most jobs. In order to consume these more efficiently and to minimize message exchange in the cluster, the client will automatically reconnect to this node.

    The frequency of this check is configurable via the cycle option.

    Note that we limit this automatic reconnection to the initial node list you provide on connect.

Roadmap

  • Make all methods optionally return a Promise.
  • Keep a stats counter by queue name?

License

MIT.

Originally forked from Cyril David's redic.js.

Readme

Keywords

Package Sidebar

Install

npm i disque.js

Weekly Downloads

1

Version

0.1.3

License

MIT

Last publish

Collaborators

  • djanowski