Hi!
No, multi-machine is even worse than multithreading.
The separation of hardware means you must use multiple processes rather than multiple threads.
Ordinary synchronization primitives cannot be used so you need to use other mechanisms to coordinate access to shared data. You also need to decide where the shared data should reside. It gets complicated.




Reply With Quote