Giter Club home page Giter Club logo

disq's Introduction

Disq

A simple Disque client for Node.js.

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

Usage

const Disq   = require('disq');
const disque = new Disq({ nodes: [ '127.0.0.1:7711', '127.0.0.1:7712' ] });

disque.addjob('queue1', 'foo')
  .then(function(jobID) {
    console.log(`Added job with ID ${jobID}`);
  });

// Meanwhile in a parallel universe
disque.getjob('queue1')
  .then(function(jobs) {
    jobs.forEach(function(job) {
      doVeryHeavyWork(job.body);

      disque.ackjob(job.id)
        .then(function() {
          console.log(`Processed job ${job.id}`);
        });
    });
  });
});

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

const disque = new Disq({ 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

  • Keep a stats counter by queue name?

Name

After seeing that disque was squatted on npm, I named this library disque.js. That was before I could tell how weird that name was in npm-land. So on July 2016, together with a major rewrite, I renamed the library to disq.

License

MIT.

Originally forked from Cyril David's redic.js.

disq's People

Contributors

djanowski avatar cyx avatar

Watchers

Marc Campbell avatar Ethan Mosbaugh avatar James Cloos avatar Grant Miller avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.