shredder icon indicating copy to clipboard operation
shredder copied to clipboard

Investigate removing allocation during collection

Open Others opened this issue 4 years ago • 0 comments

Currently we use two vectors in collection (which is better than the many vectors we used before). One is used for root-tracking/DFS (depth first search) and the other stores the lockout items. These vectors are potentially massive, so we probably want to investigate how to get rid of them, probably by using an intrusive linked list somehow

Others avatar May 21 '20 20:05 Others