Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8398129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:57:51+00:00 2026-06-09T20:57:51+00:00

I need some help with node.js as i’m a newbie to it. I have

  • 0

I need some help with node.js as i’m a newbie to it.
I have an array of data and have to run functions with that data in multiple threads (using all CPU cores).
In usual for me languages i do create threadpool with number of threads, push some tasks to it, wait until finish, send more tasks to queue.
But i can’t figure it out how to do that in nodejs.

PS: i’m using latest 0.8 branch.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T20:57:52+00:00Added an answer on June 9, 2026 at 8:57 pm

    Nodejs is built to run on a single process, but you can spawn other processes. The cluster module uses the fork method from the child_process module, but it’s intended for distributing connections of a server across processes and sharing the same port.

    I think you want exec. Example:

    var exec = require('child_process').exec,
    child;
    
    var array = ["a", "b", "c", "d", "e"]; // your array of data
    
    var n = array.length; // length
    var done = 0; // jobs done
    var i = n; // iterator
    
    while(i--) { // reverse while loops are faster
        (function (argument) { // A closure
            child = exec('node otherFunction.js '+argument, // Spawn the process, with an item from your array as an argument.
              function (error, stdout, stderr) {
                if (error === null) {
                    done += 1;
                    if (done === n) {
                        console.log('Everything is done');
                    }
                }
            });
        })(array[i]);
    }
    

    The above is of course bad code and not even tested, but I think it would work. All you have to do is call the function you wanted to call on the array’s items in otherFunction.js, inside that you would find the arguments in process.argv.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Need some help with DataFormatString in GridView. I have a Double value that needs
Need your help!!! I have activity, where I get some data in JSON format
Need some help... I have jasperserver 4.1 installed on my ubuntu. It runs via
Need some help, please. I have a line of horizontal thumbnails loaded as ONE
Need some help to solve this. I have a gridview and inside the gridview
Need some help from javascript gurus. I have one page where http://www.google.com/finance/converter is embedded
Need some help assigning a mouseover event to display some icons that start out
Need some help with a query.. I have three tables. Source id name 1
I need some help on syntax with node.js promises . In readme for node.js
I need some help editing a csproj file using PowerShell. I basically need to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.