Search code examples
erlangvirtual-machine

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?


Solution

  • 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.