
What exactly is Erlang/OTP? - Stack Overflow
Sep 27, 2015 · On erlang/otp, it says Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability. Some of its uses are in …
Where is Erlang used and why? - Stack Overflow
Oct 28, 2009 · Erlang will select the most appropriate version given the arguments received. (Config is a structure of type #config which has a type attribute). That means it is very easy and much clearer …
What is the best way to learn Erlang? - Stack Overflow
May 28, 2013 · I'm a month-or-so into learning and the guides I'm enjoying most are: The Erlang Site's Getting Started with Erlang Guide Joe Armstrong's Book Software for a Concurrent World …
What is the difference between == and =:= in Erlang when used with ...
Mar 20, 2012 · Explains the difference between '==' and '=:=', two comparison operators in Erlang, detailing their use cases and behavior in general terms.
RabbitMQ, Erlang: How to "make sure the erlang cookies are the same"
In home directory of the user running erlang process, there is hidden file .erlang.cookie. It holds string which is responsible for the topology of erlang cluster. Make sure that the string (cookie) is the same …
multithreading - Technically, why are processes in Erlang more ...
Nov 7, 2014 · My thoughts I don't fully understand technically why Erlang processes are so much more efficient in spawning new processes and have much smaller memory footprints per process. Both the …
How do I install a specific version of Erlang/OTP?
Jun 22, 2017 · I installed erlang and erlagn-nox, but when i run erl my version shows as R14B04 when i want the r16 that rabbitmq plays well with. How do I install a specific version of erlang?
RabbitMQ failed to start, TCP connection succeeded but Erlang ...
Dec 19, 2017 · With Erlang versions prior to 20.2, the cookie file location might also be C:\Windows\.erlang.cookie (when running as Windows service).
Windows x64 RabbitMQ install error with Erlang environment var …
Your ERLANG_HOME was probably C:\Program Files\erl5.9.2, and just changing to C:\Program Files\erl5.9.2\erts-5.9.2, should have fixed the problem. Main point being RabbitMQ and likely …
How to write a simple webserver in Erlang? - Stack Overflow
Feb 5, 2010 · Using the default Erlang installation what is the minimum code needed to produce a "Hello world" producing web server?