comparison - Advantages of Erlang over (something like) node.js? -
i realize different beast used solve different problems, ask enumerated list of advantages of erlang on node.js (and vice-versa). when use 1 on other?
erlang language , runtime. i'm assuming wish comparison of erlang runtime node.js
first i'll list similarities:
- both lend event driven programming.
- both focus on highly asynchronous programming.
and then advantages erlang has:
- erlangs message passing abstracts differences between local , distributed processes making distributed programming easier.
- erlangs hot code loading allows in place releases on running services without disrupting current activity.
- erlang has superior tools packaging , deployment.
- erlangs supervisor , gen_server behviors provide superior framework building extremely robust , fault tolerant systems.
Comments
Post a Comment