How is process in elixir different with system thread in other language?

If you know your Java history, back in the 1.1, 1.2 days the JVM used “green threads” which are similar to BEAM processes. The scheduler wasn’t as optimized, and the community wanted native threads to optimize for compute speed.

3 Likes