search
HomeWeb Front-endJS TutorialWhat are asynchronous resources? A brief analysis of Node's method of realizing asynchronous resource context sharing

How does Node.js implement asynchronous resource context sharing? The following article will introduce to you how Node implements asynchronous resource context sharing. Let’s talk about the use of asynchronous resource context sharing for us. I hope it will be helpful to everyone!

What are asynchronous resources? A brief analysis of Node's method of realizing asynchronous resource context sharing

Asynchronous resource context sharing means sharing context data within a network request life cycle or asynchronous resource call chain.

Before answering this question, we must first understand what asynchronous resources are.

Asynchronous resources

Asynchronous resources can be understood as objects with callbacks, such as but not limited to Promises, Timeouts, TCPWrap, UDP, etc. See Asynchronous resource type list for details.

The official definition is as follows:

An asynchronous resource represents an object with an associated callback. This callback may be called multiple times, such as the 'connection' event in net.createServer( ), or just a single time like in fs.open(). A resource can also be closed before the callback is called.

AsyncLocalStorage

here Introducing Node.js AsyncLocalStorage, the officially provided asynchronous context sharing solution. This feature was still an experimental feature before 16.4.0 and has been stable since 16.4.0.

AsyncLocalStorage can share data in asynchronous operation chains.

AsyncLocalStorage instance asyncLocalStorage has the following main methods:

  • disable() disables asyncLocalStorage;
  • getStore() returns the current context store, which must pass asyncLocalStorage .run() or asyncLocalStorage.enterWith() to perform asynchronous context initialization;
  • enterWith(store) passes the context store through this method, and the store can be obtained in all subsequent asynchronous calls;

Example:

const store = { id: 1 };
// Replaces previous store with the given store object
asyncLocalStorage.enterWith(store);
asyncLocalStorage.getStore(); // Returns the store object
someAsyncOperation(() => {
  asyncLocalStorage.getStore(); // Returns the same object
});
  • run(store, callback[, ...args]) Use run to specify the context store and its effective callback function. The store will only be in is obtained from the callback function.
  • exit(callback[, ...args])

asyncLocalStorage.run() The first parameter of the function is to store the shared data we need to access in the asynchronous call. The second parameter is an asynchronous function.

The following is an example to demonstrate how to use AsyncLocalStorage to implement asynchronous resource context sharing:

What are asynchronous resources? A brief analysis of Nodes method of realizing asynchronous resource context sharing

Output:

runA 8f19ebef-58d7-4b1a-8b9b-46d158beb5d2 2022/5/24 20:26:17 this is a log message
runB 8f19ebef-58d7-4b1a-8b9b-46d158beb5d2 2022/5/24 20:26:17 this is a log message

Through asyncLocalStorage.run In the same asynchronous function running, function runA and function runB will be run, and runA and runB can access the same context data.

Performance issues

AsyncLocalStorage provides a large traversal for us to easily implement asynchronous resource context sharing in Node.js, but every asynchronous resource operation will trigger Async Hooks , will inevitably have a certain impact on the performance of our Node application. So how big is the impact?

According to an actual measurement by Kuzzle, using AsyncLocalStorage will cause about 8% additional performance loss. Of course, different business scenarios may have different performance. If you are concerned about this part of performance, you can also add comparative testing to your business to test the specific performance impact.

---- Log with AsyncLocalStorage Log classic difference
req/s 2613 2842 ~8%

Application Scenario

In other multi-threaded languages, each HTTP creates a new thread, and each thread has its own memory. You can store global state in thread memory and retrieve global state from anywhere in your code.

In Node.js, because Node.js is single-threaded and shares memory among all HTTP requests, each HTTP request cannot hold mutually isolated global state.

AsyncLocalStorage can effectively isolate the status between different asynchronous operations, and plays a very important role in scenarios such as HTTP request tracking, APM tools, context log tracking, and request-based full-link log tracking.

For more node-related knowledge, please visit: nodejs tutorial!

The above is the detailed content of What are asynchronous resources? A brief analysis of Node's method of realizing asynchronous resource context sharing. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
Node.js各版本间有什么区别?如何选择合适的版本?Node.js各版本间有什么区别?如何选择合适的版本?Aug 01, 2022 pm 08:00 PM

Node.js 有 LTS 版本和 Current 版本,这两种版本有什么区别?下面本篇文章带大家快速掌握 Node.js 版本的区别,并聊聊如何选择合适的版本,希望对大家有所帮助!

聊聊使用Node如何实现轻量化进程池和线程池聊聊使用Node如何实现轻量化进程池和线程池Oct 14, 2022 pm 08:05 PM

Node.js 的是一门单线程的语言,它基于 V8 引擎开发,v8 在设计之初是在浏览器端对 JavaScript 语言的解析运行引擎,其最大的特点是单线程,这样的设计避免了一些多线程状态同步问题,使得其更轻量化易上手。

Node.js如何进行版本管理?3款实用版本管理工具分享Node.js如何进行版本管理?3款实用版本管理工具分享Aug 10, 2022 pm 08:20 PM

Node.js如何进行版本管理?下面本篇文章给大家整理分享3 款非常实用的 Node.js 版本管理工具,希望对大家有所帮助!

node爬取数据实例:抓取宝可梦图鉴并生成Excel文件node爬取数据实例:抓取宝可梦图鉴并生成Excel文件Aug 26, 2022 pm 08:31 PM

怎么用Node.js爬取网页的数据并写入Excel文件?下面本篇文章通过一个实例来讲解一下用Node.js爬取网页的数据并生成Excel文件的方法,希望对大家有所帮助!

IDEA中怎么配置安装node.js?方法浅析IDEA中怎么配置安装node.js?方法浅析Dec 21, 2022 pm 08:28 PM

IDEA中怎么运行node?下面本篇文章给大家介绍一下IDEA中配置安装并运行node.js的方法,希望对大家有所帮助!

聊聊怎么使用Node将Excel转为JSON聊聊怎么使用Node将Excel转为JSONNov 28, 2022 pm 08:02 PM

怎么使用Node将Excel转为JSON?下面本篇文章给大家介绍一下Node中转换Excel成JSON的方法,希望对大家有所帮助!

看看怎么使用nodejs生成二维码看看怎么使用nodejs生成二维码Oct 25, 2022 am 09:28 AM

​二维码在生活中无处不在,之前我也使用过java的zxing库生成过二维码,功能很强大。但是其实nodejs上也有很多第三方库能够生成二维码。今天我们就是使用qrcode这个库来生成二维码。

详解node中如何安装多版本并进行切换详解node中如何安装多版本并进行切换May 27, 2022 pm 08:33 PM

本篇文章给大家深入了解一下多版本node的安装方法,并详细介绍一下node版本切换方法,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version