|
|
|
|
|
by bdavid21wnec
958 days ago
|
|
I used Elixir briefly, what sticks out to me was how easy it was to learn. Really like the pattern matching and immutable data.
What it excelled at most and I still haven’t found the full equivalent in any other language is building a full CQRS system.
The Commanded library combined with graphql was so powerful and well thought out.
With the BEAM if a developer writes some bad code, instead of screwing up all your events, the GenServer will just error out on the same event until new code it pushes to fix it. Events will starting queueing, but the whole system is unaffected. It was brilliant |
|