i am using NodeJs and need call a infinite function, but i dont know what is the best for a optimal performance.
recursive function
function test(){
//my code
test();
}
setInterval
setInterval(function(){
//my code
},60);
setTimeout
function test(){
//my code
setTimeout(test,60);
}
I want the best performance without collapse the server. My code have several arithmetic operations.
appreciate any suggestions to optimize the javascript performance.
Be carefull.. your first code would block JavaScript event loop.
Basically in JS is something like list of functions which should be processed. When you call setTimeout
, setInterval
or process.nextTick
you will add given function to this list and when the right times comes, it will be processed..
Your code in the first case would never stop so it would never let another functions in the event list to be processed.
Second and third case is good.. with one little difference.
If your function takes to process for example 10ms and interval will be yours 60ms..
So the difference is delay between starts of your function which can be important in some interval based systems, like games, auctions, stock market.. etc..
Good luck with your recursion :-)