Cabbage Collector
- Simple GC implementation
- Simple Mark and Sweep
Guide
The way to create and use the object is almost the same as Box<T>.
However, in the current implementation, GC must be triggered manually.
COLLECTOR.run_cabbage_collection;
The circular reference issue has been resolved.
COLLECTOR.run_cabbage_collection;
Checklist
- Circular Reference
- Automatically identifies root and non-root
- Auth trigger GC
- Concurrent GC
- Generational GC
- Memory Compaction