|
|
|
|
|
by zozbot234
2400 days ago
|
|
> garbage collectors for Rust that function reasonably are still pretty experimental You can also use something like https://github.com/artichoke/cactusref - which provides an equivalent of Rc<T> with nearly-seamless, timely detection and collection of deallocation cycles. This gives you the equivalent of full GC, but using a "zero-overhead" approach that integrates more cleanly with how Rust idiomatically works. |
|
Two common problems in most reference counting implementations.