An open API service indexing awesome lists of open source software.

https://github.com/caseywebdev/jobby

YET ANOTHER REDIS JOB QUEUE!
https://github.com/caseywebdev/jobby

Last synced: over 1 year ago
JSON representation

YET ANOTHER REDIS JOB QUEUE!

Awesome Lists containing this project

README

          

# Jobby

YET ANOTHER REDIS JOB QUEUE!

## Install

```bash
npm install jobby
```

## Usage

```js
var jobby = require('jobby');

var errorHandler = function (er, job) { console.error(er, job); };

jobby.jobs.mail = function (options, cb) {
// Do mail-ish things...
cb();
};

jobby
.connect(redisUrl, errorHandler)
.push('mail', {to: 'a', from: 'b', body: 'Hello!'});
```