私は書き込みストリームを作成しています:
var file = fs.createWriteStream('path', {flags: 'a+', encoding: 'utf16le'});
async.queueを使用して、このジョブをキューに入れています:
file.write(data, 'utf8');
file.on('error', function(error) {
console.error('ERROR with file stream', error);
});
この警告が表示されます:
(node) warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit.
を使用せずにこれを解決する良い方法はありsetMaxListeners(0)
ますか?
ノードのバージョン: 0.10.29