if erlang own process creation , scheduling, without utilizing os threads, how make use of multiple cpu cores? limited understanding os assigns cpu cores os threads.
erlang runs on virtual machine called beam.
the erlang process runs separate beam vm on each core (using os threads).
see related question.
Comments
Post a Comment