You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -361,7 +361,7 @@ Node JS Platform does not follow Request/Response Multi-Threaded Stateless Model
361
361
* Node JS Web Server receives those requests and places them into a Queue. It is known as “Event Queue”.
362
362
* Node JS Web Server internally has a Component, known as “Event Loop”. Why it got this name is that it uses indefinite loop to receive requests and process them.
363
363
* Event Loop uses Single Thread only. It is main heart of Node JS Platform Processing Model.
364
-
*Even Loop checks any Client Request is placed in Event Queue. If no, then wait for incoming requests for indefinitely.
364
+
*Event Loop checks any Client Request is placed in Event Queue. If no, then wait for incoming requests for indefinitely.
365
365
* If yes, then pick up one Client Request from Event Queue
366
366
* Starts process that Client Request
367
367
* If that Client Request Does Not requires any Blocking IO Operations, then process everything, prepare response and send it back to client.
0 commit comments