Julia provides efficient mechanisms for writing programs that spawn across many processes. This mechanism is called multiprocessing. In this recipe, we show how to use Julia's multiprocessing mechanism to spawn a worker process that is killed when it takes too long to respond.
Multiprocessing in Julia
Getting ready
Mechanisms for distributed computing are built into the Julia language. Thanks to this, our recipe does not require the installation of any Julia packages. Simply start the Julia REPL.
In the GitHub repository for this recipe, you will find the commands.txt file, which contains the presented sequence of Julia commands.