|
|
|
|
|
by marshray
5538 days ago
|
|
It's an interesting problem that will probably never be solved, only optimized and amortized. That makes it good for papers! The most efficient scheme probably is a "stop the world" system. The regular program might mutate concurrently and the GC could indeed be concurrent, but making them run at the same time is a real challenge. Of course, people don't like it when their app pauses. I think it's noteworthy that there never was a big office suite or even a web browser written primarily in a GC system, despite many years of promises. |
|
As for web browsers... every web browser has a GC...