Node reads files in the form of data blocks

Source: Internet
Author: User
Tags install node

Node reads files in the form of data blocks

In Node, the default value of Transfer-Encoding in the http response header is chunked.

Transfer-Encoding: chunked

Node's inherent asynchronous mechanism allows the response to be generated gradually.

This method of sending data blocks is very efficient when I/O operations are involved. Node allows writing data to the response in the form of data blocks, and also allows reading files in the form of data blocks.

In this way, there can be efficient memory allocation. You do not need to read all the files into the memory and then respond to the customer. This saves memory when processing a large number of requests.

Var http = require ('http ');
Var fs = require ('fs ');

Http. createServer (function (req, res ){
Res. writeHead (200, {'Context-type': 'image/png '});

Var imagePath = 'd:/home.png ';

Var stream = fs. createReadStream (imagePath );

// Read data in one piece
Stream. on ('data', function (chunk ){
Res. write (chunk );
});

Stream. on ('end', function (){
Res. end ();
});

Stream. on ('error', function (){
Res. end ();
});
}). Listen (3000 );

Node also provides a more concise method pipe ()

Var http = require ('http ');
Var fs = require ('fs ');

Http. createServer (function (req, res ){
Res. writeHead (200, {'Context-type': 'image/png '});

Var imagePath = 'd:/home.png ';

Var stream = fs. createReadStream (imagePath );
Stream. pipe (res );

}). Listen (3000 );

You may also like the following content:

How to install Node. js in CentOS 7

Build a Node. js development environment in Ubuntu 14.04

Install and configure the Node. js development environment in javasru 12.04

Getting started with Node. Js [PDF + related Code]

Node. js Development Guide hd pdf Chinese version + source code

Node. js getting started Development Guide

Compile and install Node. js in Ubuntu

Node. js details: click here
Node. js: click here

This article permanently updates the link address:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.