boa
boa copied to clipboard
Track Usage of `Rc` after GC Optimization for Potential Replacement with `Gc`
This issue tracks if the performance can be improved by utilizing Gc
instead of Rc
after optimizing the garbage collection. Rc
is a reference counting mechanism that provides automatic memory management, but it may have certain overhead and limitations compared to Gc
.
Places where Rc
could be replaced by Gc
:
-
CompileTimeEnvironment
s #3025
Blocked until we optimize our GC.