私はこの記事を読んでいます:http://elegantcode.com/2011/04/06/taking-baby-steps-with-node-js-pumping-data-between-streams/そしてストリームを理解するのに少し問題があります。
引用:
"Suppose we want to develop a simple web application that reads a particular file from disk and send it to the browser. The following code shows a very simple and naïve implementation in order to make this happen."
したがって、コードサンプルは次のとおりです。
var readStream = fileSystem.createReadStream(filePath);
readStream.on('data', function(data) {
response.write(data);
});
readStream.on('end', function() {
response.end();
});
単純にできるのに、なぜ上記のように使用するのでしょうか。
fs.readFile(filePath, function(err, data){
response.write(data);
response.end();
});
いつまたはなぜストリームを使用しますか?