+ 1
Multi process vs Multi Thread
Hi I have an application using com components. What is criteria to choose between multi process and multi thread? Can someone define choosing criteria and performance between both i.e. multi process and multi thread?
1 ответ
+ 2
If your workers need to work on shared data then go for threads, else if the data is not shared between workers then you can use processes, by the way spawning threads is faster than creating processes.