Julia’s I/O and GC are not “the best in class” right now, so it seems to be observed by many people at the moment that if you have a I/O or GC-intense work, multi-process would be better because you get parallel GC by construction. Since you have no need to share data (memory) between difference tasks, you should use whatever is faster, in this case multi-processing
4 Likes