
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 …
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 …
What is the best way to learn Erlang? - Stack Overflow
May 28, 2013 · I have the both the Erlang Progamming and the Software for a Concurrent World, both are excellent. I might almost say the Erlang Programming is better, it shows a lot more …
How do you design the architecture of an Erlang/OTP-based …
Sep 5, 2011 · Erlang is great in that it allows you to hide concurrency behind interfaces (known as implicit concurrency). For example, you use a functional module API, a normal …
What is the difference between == and =:= in Erlang when used …
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 …
8 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) …
`when` reserved word in erlang - Stack Overflow
Nov 10, 2010 · The when in Erlang is a guard on a clause. This regards the pattern matching built into Erlang. Your example must be: when_version(Size) when Size > 10 -> do_larger(); …
How to convert Erlang:timestamp () to normal date format?
Sep 19, 2019 · I would like to convert the result of erlang:timestamp () to the normal date type, Gregorian Calendar type. Normal Date type means "Day-Month-Year, Hour:Minutes:seconds".
How to get Erlang's release version number from a shell?
Mar 5, 2012 · Many programs return their version number with a command like: $ program --version program (platform info) v1.2.3 This is useful for scripting the installation or …
Erlang : Returning from a function - Stack Overflow
Dec 9, 2009 · In Erlang you just use the pattern matching to trigger the appropriate function. If you have too many clauses to cover and deal with I would also suggest to refactor the code a little bit.