6 ms·
We are doing more "multi-process" programming than "multi-threading". Our systems are designed to scale by increasing the number of processes performing the tas
by carbuncle 14y ago
We are doing more "multi-process" programming than "multi-threading".
Our systems are designed to scale by increasing the number of processes performing the task at hand, more than having one process with multiple threads to increase concurrency.
The programmers try not to think delegate the thread management to the OS, by using multiple processes and MQ in between.