Giter Club home page Giter Club logo

async-forkqueue's Introduction

Async-ForkQueue

Async-ForkQueue is based on ForkQueue, but it allows setting a level of concurrency where each forked process will run that many at a time and provides a api for creating worker functions.

Install

  npm install async-forkqueue

API

var Queue = require('async-forkqueue');
var num_workers = 4;
var concurrency = 4;

var queue = new Queue(num_workers, concurrency, module_path);

for (var i = 0; i < 100; i++) {
  queue.push(i);
}

queue.end(callback);

Worker modules

Worker modules are spawned with child_process.fork.

A simple worker is below.

module.exports = function (payload, cb) {
  // Do something with the payload
  cb();
}

async-forkqueue's People

Contributors

azylman avatar nathanleiby avatar rgarcia avatar jonahkagan avatar mohit avatar

Stargazers

Petter Aas avatar

Watchers

Taylor Singletary avatar Ben Adida avatar Tim Wee avatar Nikhil Pandit avatar  avatar Xavi avatar  avatar  avatar Colin Schimmelfing avatar Alex Smolen avatar  avatar Tyler B. avatar Kevin Shen avatar Jacob Simon avatar Sayan avatar Carl Shan avatar Ryan Burns avatar jian avatar  avatar Vicky Enalen avatar Colin DuRant avatar Pamela Martinez avatar Alisha Sojar avatar Kyle Vigen avatar Dan Sparks avatar Phil Nova avatar Richard Wen avatar Yifan Wu avatar Asanka Dharma avatar  avatar  avatar  avatar  avatar Evan Shieh avatar  avatar Kofi Ohene-Adu avatar  avatar  avatar Nitsan Shai avatar Amir Valiani avatar  avatar  avatar Nathaniel Okun avatar Lucas Cook 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.