lang/erlang, elixir
BEAM concurrency model
SEP 29, 2019 • JAVIER GARCÍA The first question that arises when we talk about concurrency is what is concurrency? When talking about concurrency, it’s important not to confuse concurrency with parallelism. While concurrency implies that two pieces of code are executed in different contexts, it doesn’t necessarily imply that they are executed at the same time. Parallelism does. If two fragments ..