我很难理解它到底是怎么process.nextTick
做的。我以为我理解了,但我似乎无法复制我认为这应该如何工作:
var handler = function(req, res) {
res.writeHead(200, {'Content-type' : 'text/html'});
foo(function() {
console.log("bar");
});
console.log("received");
res.end("Hello, world!");
}
function foo(callback) {
var i = 0;
while(i<1000000000) i++;
process.nextTick(callback);
}
require('http').createServer(handler).listen(3000);
在foo
循环时,我将发送几个请求,假设handler
将在后面排队几次foo
,callback
只有在foo
完成时才入队。
如果我对它的工作原理是正确的,我假设结果将如下所示:
received
received
received
received
bar
bar
bar
bar
但它没有,它只是顺序的:
received
bar
received
bar
received
bar
received
bar
I see that foo
is returning before executing callback
which is expected, but it seems that callback
is NEXT in line, rather than at the end of the queue, behind all of the requests coming in. Is that the way it works? Maybe I'm just not understanding how exactly the event queue in node works. And please don't point me here. Thanks.