|
|
|
|
|
by chrisseaton
3171 days ago
|
|
> You can get rid of the need to multi threading by deploying more containers in the same machine or via orchestration. What if you have a large shared in-memory data structure
that you want to update with lots of irregular translations in parallel? Like many graph problems? How are you going to do that with multiple containers? As in industry we just don't understand how to distribute that kind of problem effectively. |
|
One of the reasons Node is successful is the simplicity of single threaded code. Way easier to reason, I would question the usage of Node if you are doing something CPU bound with it. You can use golang or C# with tasks for that.