|
|
|
|
|
by cdoxsey
3171 days ago
|
|
I think this has two major downsides: 1. Setting up containers and the communication between them is really complex - it also only makes sense for a deployed, long-running, server process.
2. Communication between containers is very expensive. You're never going to beat an in-process pointer to shared memory. Web workers would make a lot more sense for most javascript programs. |
|
2 - That is only true if the your bottleneck is on communication somehow. Usually it is not.
And a huge advantage: You will write stateless and easy to scale apps that do not care how the machine resources are being handled.