Forkserver

This lesson discusses the less-used forkserver option to spin off new processes.

We'll cover the following...

Forkserver

The third and final option that can be chosen for the start method is the "forkserver". The official documentation states that with forkserver as the start method, a brand new single-threaded process, called server is started. Whenever, a new process needs to be created, the parent process connects to the server and requests that ...