Closed
Description
- Version: 6.x 7.x 8.x master:
- Platform: n/a:
- Module: timers:
When there are at least two timer set by setInterval, whose callback execution time are longer than interval, the eventloop will be blocked, meanwhile the 4.x
is not. You may take the following code to have a test.
@Fishrock123 It seems the timers
module refactoring brings this.
const http = require('http');
const sleep = function(ms) {
const st = new Date().getTime();
while (new Date().getTime() < st + ms);
};
const t1 = setInterval(function(){
sleep(100);
}, 50)
const t2 = setInterval(function(){
sleep(60);
}, 50);
http.createServer(function(req, res) {
res.end('hello ' + new Date());
}).listen(8888);