Coder Social home page Coder Social logo

Comments (4)

caolan avatar caolan commented on June 19, 2024

remember that you only have a single thread of execution, so without using setTimeout the pause() function will block. Using async.parallel will not make your javascript asynchronous, rather it will help you properly manage asynchronous operations.

If you need to run javascript like this in parallel you'll need to use multiple processes or look into web workers.

from async.

rbhogi avatar rbhogi commented on June 19, 2024

I tried setTimeout for pause case also. But it didn't work.
Here is the code for your reference

function task(name, delay, callback, useTimeout){
if(useTimeout){
console.log(name + "(" + delay +")");
setTimeout(function(){
callback(null, name);
},delay);
}else{
setTimeout(function(){
console.log(name + "(" + pause(delay) +")");
callback(null, name);
},1);
}
}

from async.

rbhogi avatar rbhogi commented on June 19, 2024

I'll look into web workers. Thanks for quick response.

from async.

rbhogi avatar rbhogi commented on June 19, 2024

I have following simple program. I am looking to parallelize this program using web-worker.

function process(delay){

var start = new Date();
var len = 300000*delay;
for(var i=0;i<len;i++){};
return (new Date()-start);
}

var start = new Date();
process(500);
process(600);
console.log("Time taken :"+(new Date()-start));

from async.

Related Issues (20)

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.