We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 202eac3 + b15ea89 commit 309e08dCopy full SHA for 309e08d
README.md
@@ -210,7 +210,6 @@ print("hello world!")
210
...
211
</details>
212
213
-
214
<details>
215
<summary>웹 서버 소프트웨어(Apache, Nginx)의 서버 간 라우팅 기능은 OSI 7계층 중 어디서 작동하는지 설명해보세요.</summary>
216
@@ -1022,6 +1021,16 @@ print("hello world!")
1022
1021
<p>각 해결방안에 대한 유의점은 작성하지 않습니다.</p>
1023
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
1034
### Python
1035
1036
0 commit comments