What is a Buffer object in node.js? What is the usage scenario?

青灯夜游
Release: 2021-07-28 18:41:37
forward
1861 people have browsed it

This article will introduce you to the Buffer object innode.js, and see what the usage scenarios of the Buffer object are and what their advantages are.

What is a Buffer object in node.js? What is the usage scenario?

The Buffer object is the core module of Node. It is also a test question that is frequently asked during interviews. If you don’t delve into it in depth, you may just know it like me. Yes, once the interviewer expands and asks more questions, it may not be possible. Anyway, at that time, I could only answer: The Buffer module is rarely used in the current business involved, but the Buffer object can effectively optimize some business functions and performance that cannot be satisfied by string transmission. [Recommended learning: "nodejs Tutorial"]

So, let’s learn about the Buffer object today.

Buffer object

The Buffer object is used to represent a fixed-length byte sequence

// 创建一个长度为 10、以零填充的 Buffer。 const buf1 = Buffer.alloc(10); // 创建一个长度为 10 的 Buffer, // 其中全部填充了值为 `1` 的字节。 const buf2 = Buffer.alloc(10, 1); var str="hello Jasen"; var buf = new Buffer.from(str,'utf-8'); console.log(buf); //输出:
Copy after login

Observe the output result, Buffer Object is like an array.

Each element in the Buffer object is a two-digit hexadecimal number (that is, a value from 0 to 255)

If the value assigned to an element of the Buffer is less than 0, it will be added one after another. 256, until a value in the range of 0 to 255 is obtained. If it is greater than 255, subtract 256 one by one until a value in the range of 0-255 is obtained. If it is a decimal, it is rounded directly.

Usage scenarios

  • Can be used to process large amounts of binary data
  • Processing images, file reception and upload, network protocols Wait

Advantages

Performance improvement during network transmission

Most of Strings are used during network transmission, which inevitably needs to be converted into a Buffer for data transmission in binary mode. If we directly convert it into a Buffer before transmitting, there is no need to do additional conversion during the transmission process, and loss is avoided, which improves performance.

The following is a performance test through ab, and the result of initiating 200 concurrent client requests. The QPS improvement is not very high, but there is still a slight improvement. You can copy the code and execute it to see if the result is the same as mine.

What is a Buffer object in node.js? What is the usage scenario?

What is a Buffer object in node.js? What is the usage scenario?

var http = require('http'); var str = ""; for (var i = 0; i < 1024 * 10; i++) { str += "a"; } str = new Buffer.from(str,'utf-8'); http.createServer(function (req, res) { res.writeHead(200); res.end(bufstr); }).listen(8002);
Copy after login

Buffer and Stream

Stream is also the core module of Node. The data is like Like water, a stream is an abstraction of input and output devices. It is a set of ordered byte data transmission methods with a starting point and an end point.

There are four basic stream types in Node.js:

  • Writable - a stream that can write data (such as fs.createWriteStream())
  • Readable - A stream from which data can be read (e.g. fs.createReadStream()).
  • Duplex - a readable and writable stream (e.g. net.Socket).
  • Transform -Duplexstream that can modify or convert data during the reading and writing process

Scenario:

File upload and download in pieces, For example, when downloading a movie, you can watch it while downloading, such an implementation process.

Original address: https://juejin.cn/post/6955490895131066382

For more programming-related knowledge, please visit:Introduction to Programming! !

The above is the detailed content of What is a Buffer object in node.js? What is the usage scenario?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!