Skip to content

Commit d52ce84

Browse files
author
Maledong
authored
chore: Change the title from 'TL;DR' to 'Abstract' (#2212)
Ref: #2210. In order to give a good understanding of 'TL;DR', change it to 'Summary' to make it more proper.
1 parent e9d8121 commit d52ce84

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

locale/en/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you're writing anything more complicated than a brief command-line script, re
1111
This document is written with Node servers in mind, but the concepts apply to complex Node applications as well.
1212
Where OS-specific details vary, this document is Linux-centric.
1313

14-
## TL; DR
14+
## Summary
1515
Node.js runs JavaScript code in the Event Loop (initialization and callbacks), and offers a Worker Pool to handle expensive tasks like file I/O.
1616
Node scales well, sometimes better than more heavyweight approaches like Apache.
1717
The secret to Node's scalability is that it uses a small number of threads to handle many clients.

locale/fa/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you're writing anything more complicated than a brief command-line script, re
1111
This document is written with Node servers in mind, but the concepts apply to complex Node applications as well.
1212
Where OS-specific details vary, this document is Linux-centric.
1313

14-
## TL; DR
14+
## Summary
1515
Node.js runs JavaScript code in the Event Loop (initialization and callbacks), and offers a Worker Pool to handle expensive tasks like file I/O.
1616
Node scales well, sometimes better than more heavyweight approaches like Apache.
1717
The secret to Node's scalability is that it uses a small number of threads to handle many clients.

locale/it/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you're writing anything more complicated than a brief command-line script, re
1111
This document is written with Node servers in mind, but the concepts apply to complex Node applications as well.
1212
Where OS-specific details vary, this document is Linux-centric.
1313

14-
## TL; DR
14+
## Summary
1515
Node.js runs JavaScript code in the Event Loop (initialization and callbacks), and offers a Worker Pool to handle expensive tasks like file I/O.
1616
Node scales well, sometimes better than more heavyweight approaches like Apache.
1717
The secret to Node's scalability is that it uses a small number of threads to handle many clients.

locale/ja/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If you're writing anything more complicated than a brief command-line script, re
1111
This document is written with Node servers in mind, but the concepts apply to complex Node applications as well.
1212
Where OS-specific details vary, this document is Linux-centric.
1313

14-
## TL; DR
14+
## Summary
1515
Node.js runs JavaScript code in the Event Loop (initialization and callbacks), and offers a Worker Pool to handle expensive tasks like file I/O.
1616
Node scales well, sometimes better than more heavyweight approaches like Apache.
1717
The secret to Node's scalability is that it uses a small number of threads to handle many clients.

locale/zh-cn/docs/guides/dont-block-the-event-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ layout: docs.hbs
1111
此文档是从 Node 服务器开发的角度编写的,但这些概念也同样适用于复杂的 Node 应用程序。
1212
文章中如有涉及到不同操作系统的细节,仅以 Linux 系统为代表。
1313

14-
## TL; DR
14+
## 概述
1515
Node.js 通过事件循环机制(初始化和回调)的方式运行 JavaScript 代码,并且提供了一个线程池处理诸如 文件 I/O 等高成本的任务。
1616
Node 的伸缩性非常好,某些场景下它甚至比类似 Apache 等更重量级的解决方案表现更优异。
1717
Node 可伸缩性的秘诀在于它仅使用了极少数的线程就可以处理大量客户端连接。

0 commit comments

Comments
 (0)