1 min readJun 10, 2019
It is the duplicate question from clustering article, pasting the same answer:
“You are partially right, Spawning a new process creates an event loop, this newly created loop does not share a state with other processes, therefore package managers are in use to avoid these issues.
Threading is entirely different than process management since a single process has its own memory while threads share a memory within a single process.”