Socket
Socket
Sign inDemoInstall

pika-queue

Package Overview
Dependencies
5
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pika-queue

PikaQueue provides a simple abstraction to managing job queues in redis.


Version published
Weekly downloads
13
increased by333.33%
Maintainers
2
Install size
314 kB
Created
Weekly downloads
 

Readme

Source

PikaQueue

PikaQueue provides a simple abstraction to managing job queues in redis.

There are two players involved in a job queue: a producer and a worker.

A producer is an entity that submits a job to a queue to be completed. The producer may or may not be interested in being notified of the completion and status of job submitted.

A worker in an entity that monitors a job queue, processes the job, and then sends a notification to any interested parties once the completed.

Example of a producer:

var producer = pikaQueue('reverse-string');

// Pass in a callback if you wish to receive notification when the job is complete.
producer.queueJob({ data: "Job Data" }, function(err, message) {
  // this callback is optional
  assert.equal(message.data, "ataD boJ");
});

Example of a worker:

// add a callback to make it a worker
pikaQueue('reverse-string', function(job, cb) {
  var rev = job.data.split('').reverse().join('');
  cb(null, { data: rev });
});

Safe Queues

PikaQueue allows for safe queues, which ensure work will be picked back up if a job never finishes.

pikaQueue(
  'safety-first',
  {
    safe: true, // jobs will be retried if they fail
    timeout: 30e3, // this is the max amount of time a job should take in milliseconds
    redis: { // you can also pass in a redis host
      port: 6379,
      host: 'localhost'
    }
  },
  function(job, cb) {
    if (Math.random() < 0.5) return;
    cb(null, 'this will run eventually');
  }
);

FAQs

Last updated on 13 Jun 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc