Imagine someone asks you to evaluate someone regarding their level of Elixir knowledge. You know some stuff, but you are not the smartest guy in the block and you want to make pertinent questions that can give you a clear understanding of someones knowledge level in Elixir.
My understanding is that everyone thinks differently, so what I see as being important for an Elixir developer may be seen as irrelevant by someone else.
So I would like to know for you, personally, what and the 3 things you think people claiming to know Elixir should know, and why do you think those 3 things are important.
Question
What are the top 3 most important Elixir features for you and why do you think everyone should know them?
It is an open question, everyone is welcome to share their opinion !
Can’t decide the top 3, but the most important feature for me: It solves concurrency. I find it quite astonishing, Erlang introduced a perfect solution 33 years ago, for problems that are still a huge issue in many modern programming language. There are even frameworks trying to rebuild something similar in other languages, like https://getakka.net/ for c#.
Hmm, so maybe this is already 3: The lightweight processes, the supervisors, the process communication via messages.
This is enormous help when analysing and reading code, as “what I see is what I get” and I know that (in most cases) there will be no magic behind scenes that could change behaviour of my code.
Application servers done right. I can run multiple (OTP) applications within the same VM without problems. So I get everything what is best in application servers and at the same time I get hell lot of different nice properties, like proper fault tolerance.
Distribution of the system - I can easily configure VMs on different machines to be transparently treated as one. No need for external tooling (except epmd replacement).
Not really related to the language per se, but I do think that asking how involved with the community a candidate is is really telling. Have been to any conference or meetup ? So you participate in forums ? Have you ever wrote or publish something on the subject ? I think that shows you how commited they are.
How Elixir / Erlang solve concurrency
What sets Elixir and functional programming apart from other languages and paradigms