What’s the difference between fork and spawn in redux-saga?
One way to look at it is to see your saga’s as a Graph. ‘fork’ creates a child from the calling process. While ‘spawn’ creates a new child at the root of the graph. So when you ‘fork’ another process, the parent process will wait until the ‘forked’ process is finished. Also every exception will … Read more