A process is a [A], while a thread is a [B] that executes within a process.
Give this one a try later!
A - running program
B - sequence of code
[A] servers create a new process for each request received from the client, while [B]
servers create a new thread for each request received from the client.
Give this one a try later!
A - forking
B - threading
, In Nodejs the C++ thread pool returns the result of a blocking operation through a
__________ function.
Give this one a try later!
callback
Concurrent Servers run multiple _______________ concurrently
Give this one a try later!
processes
Nodejs utilizes the ___________ principle to prevent the main thread from blocking.
Give this one a try later!
multiplexing
For HTTP, [A] are sent by the client to trigger an action on the [B], while [C] are sent
by the [D] carrying the results of the triggered action.
Give this one a try later!
Give this one a try later!
A - running program
B - sequence of code
[A] servers create a new process for each request received from the client, while [B]
servers create a new thread for each request received from the client.
Give this one a try later!
A - forking
B - threading
, In Nodejs the C++ thread pool returns the result of a blocking operation through a
__________ function.
Give this one a try later!
callback
Concurrent Servers run multiple _______________ concurrently
Give this one a try later!
processes
Nodejs utilizes the ___________ principle to prevent the main thread from blocking.
Give this one a try later!
multiplexing
For HTTP, [A] are sent by the client to trigger an action on the [B], while [C] are sent
by the [D] carrying the results of the triggered action.
Give this one a try later!