内存泄漏Meteor.http

当我尝试创build5个并行http请求/秒时,我从Meteor.http.get中获得内存泄漏: gist

match_ids.forEach(function(match_id){ var url = self.generateUrl(match_id); Meteor.http.get(url, function(err, response){ if(!err && !response.data.result.error){ callback(null, response.data.result); }else{ callback(err || response.data.result.error, match_id); } }) }); 

即使我把速度降低到1个请求/秒,它的performance也是一样的。

 Meteor.setInterval(function(){ module.feeder.getMatchesForCarry(); }, 2000); Meteor.setInterval(function(){ Meteor.call("TEMP_d2_match_analyzerInsertSampleData", 9, function(err,response){}); }, 10000); 

这个问题的来源是Node还是Meteor?

如果我执行5个请求/秒,在大约5分钟的运行,我得到80-100兆丰满