Running multiple Erlang applications. One or many VMs?
问题 I want to run multiple Erlang applications, one being Riak and another being a web server. Should I run them in the same of separate Erlang VMs and why? 回答1: If they don't have to do anything with each other: No. You might need to restart the VM for one of the applications, which would result in a downtime for both. 回答2: While many would recommend decoupling these subsystems I would take the opposite approach. Erlang has a built in strategy to run many applications on the same release. If