Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

are there many platforms, besides JVM and .Net, that have good-quality concurrent GCs?


The Erlang Vm (BEAM), is another one at least.


It doesn't actually implement concurrent GC, although what it does implement is far simpler and has a similar effect (low latencies) as concurrent GC.

Each Erlang process has a separate heap that is collected independently; because the process heap is usually small a stop-the-process collection does not take much time.

The downside is that sending messages between processes requires copying all the data that is sent between process heaps.




Consider applying for YC's Fall 2026 batch! Applications are open till July 27.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: