ircmaxell’s blog: What About Garbage?

Cyclic Garbage Collection Enter something called a cyclic garbage collector.Basically, this is a function which will try to detect those circular references. We call it cyclic, because it’s generalized to not just handle circular references, but handle any kind of Cycle. So how does it work? Collecting Cycles I’m going to describe this backwards. I’m …

More