Skip to content

Commit 127d5ae

Browse files
doc: NodeJS Single Thread로 수정
1 parent 5b577f5 commit 127d5ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ print("hello world!")
10251025

10261026
<details>
10271027
<summary>nodeJS는 싱글 스레드인가 멀티 스레드인가?</summary>
1028-
<b>nodeJS는 비동기(Asynchronous)실행 기반의 특수한 멀티 스레드(Multi-thread)모델</b><br/>
1028+
<b>nodeJS는 비동기(Asynchronous)실행 기반의 특수한 Single Thread모델</b><br/>
10291029
Node.js 내부에서의 비동기 실행 구현 방법 중 한 가지(File I/O 파일 입출력 작업에 관한)<br/><br/>
10301030
1) 메인 스레드는 빠르게 처리할 수 있는 작업들을 집중해서 ‘혼자' 처리하고,<br/>
10311031
2) 파일 읽기와 같이 시간이 오래 걸리는 작업은 다른 스레드에 맡긴다.

0 commit comments

Comments
 (0)