I'm working on a JavaScript library that provides, among other things, map/reduce functions on sequences that can be iterated asynchronously.
A helpful soul on GitHub suggested that for Node.js, I should use process.nextTick
to make asynchronous iterations as fast as possible. (The library currently uses setTimeout
in all environments, which I do understand is suboptimal.) I'm pretty inexperienced when it es to Node, so I was reading up on how this method works and it isn't clear to me whether it's a good choice or not.
According to the answer to another question on SO, it seems that it would probably make more sense to use setImmediate
in this case as nextTick
apparently jumps ahead of pending I/O events, which seems bad to me.
This appears to be corroborated by some remarks in the official Node v0.10.0 announcment:
In v0.10,
nextTick
handlers are run right after each call from C++ into JavaScript. That means that, if your JavaScript code callsprocess.nextTick
, then the callback will fire as soon as the code runs to pletion, but before going back to the event loop.
So am I right, and iterating over sequences asynchronously should be done with setImmediate
? Or would nextTick
be a better choice here? (In either case, a clear explanation why would be much appreciated.)
I'm working on a JavaScript library that provides, among other things, map/reduce functions on sequences that can be iterated asynchronously.
A helpful soul on GitHub suggested that for Node.js, I should use process.nextTick
to make asynchronous iterations as fast as possible. (The library currently uses setTimeout
in all environments, which I do understand is suboptimal.) I'm pretty inexperienced when it es to Node, so I was reading up on how this method works and it isn't clear to me whether it's a good choice or not.
According to the answer to another question on SO, it seems that it would probably make more sense to use setImmediate
in this case as nextTick
apparently jumps ahead of pending I/O events, which seems bad to me.
This appears to be corroborated by some remarks in the official Node v0.10.0 announcment:
In v0.10,
nextTick
handlers are run right after each call from C++ into JavaScript. That means that, if your JavaScript code callsprocess.nextTick
, then the callback will fire as soon as the code runs to pletion, but before going back to the event loop.
So am I right, and iterating over sequences asynchronously should be done with setImmediate
? Or would nextTick
be a better choice here? (In either case, a clear explanation why would be much appreciated.)
- Why exactly do you need "asynchronous iteration"? – Myrne Stol Commented May 23, 2013 at 13:36
-
suppose you have a long list of data items that needs to get some kind of expensive processing applied, item by item. using
nextTick
/setImmediate
will allow other code to run in between each processing step, thus potentially preserving the capability to e.g. response to a HTTP request or, say, user interaction with the GUI. – flow Commented Sep 10, 2013 at 14:55
1 Answer
Reset to default 11Some considerations:
I'd first do serious benchmarks to what extend setImmediate is slower than process.nextTick
. If it's not (much) slower, I'd go for setImmediate
straight away since that won't starve the event loop.
In node 0.10 there's a hard limit (1000, see node.js docs) to how many times you can recursively call nextTick, so you should prevent that from happening in any case. You either need to choose a strategy before iteration, or be able to change strategy during iteration (while checking for current iteration count).
If you choose process.nextTick for performance reasons, you might want to set a configurable hard limit for how many times it would do process.nextTick
in a row, and else switch to setImmediate
. I don't have experience with serious work loads on nodejs, but I do think people are not gonna like it if your library makes their I/O choppy.
setImmediate would certainly be safest, all in all.
As for the browser:
I haven't studied your library, but since you are actually ing from setTimeout
, you may be helped learning about the new breed of delay techniques via window.postMessage
and what not. There's a nice and small library called next-tick (but with different semantics than node next-tick!) and there's a cross-browser shim for setImmediate, which is quite a bit heavier because 1) it needs to implement the setImmediate spec (including ability to cancel scheduled tasks) and 2) it has much wider browser patibility.
Check out this async sorting demo paring setImmediate (shim) to setTimeout.