misoca / reading_programming_elixir

プログラミングElixir読書会のレポジトリ
1 stars 0 forks source link

ガーベージコレクション #11

Open thara opened 5 years ago

thara commented 5 years ago

ヒープを細かく分けるから、GCのオーバーヘッドを小さく抑えられる、ってのは、なるほどなぁ、と。

eitoball commented 5 years ago

あるプロセスAで作られたリスト([3, 2, 1])を別のプロセスBに渡して、新しいリスト([4, 3, 2, 1])を返す場合、この新しいリストって、Aで作ったリストとリンクしている([4 | [3, 2, 1]])ような気がして、ちょっと理解できなかったです。

thara commented 5 years ago

https://stackoverflow.com/questions/30710923/erlang-message-passing-architecture/30711290#30711290