Skip to content

Commit 309e08d

Browse files
authored
Merge pull request ksundong#31 from syoungee/master
docs: 언어 nodeJS 관련 질문 추가
2 parents 202eac3 + b15ea89 commit 309e08d

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ print("hello world!")
210210
...
211211
</details>
212212

213-
214213
<details>
215214
<summary>웹 서버 소프트웨어(Apache, Nginx)의 서버 간 라우팅 기능은 OSI 7계층 중 어디서 작동하는지 설명해보세요.</summary>
216215
...
@@ -1022,6 +1021,16 @@ print("hello world!")
10221021
<p>각 해결방안에 대한 유의점은 작성하지 않습니다.</p>
10231022
</details>
10241023

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

10271036
<details>

0 commit comments

Comments
 (0)