|
|
|
|
|
by conartist6
108 days ago
|
|
Yeah I don't think that's generally a problem for JS engines because of the incremental garbage collector. If you make all your memory usage patterns possible for the incremental collector to collect, you won't experience noticeable hangups because the incremental collector doesn't stop the world. This was already pretty important for JS since full collections would (do) show up as hiccups in the responsiveness of the UI. |
|
Makes a lot of sense, cool that the garbage collector can run independently of the call stack and function scheduler.