For one reason or the other, the only GC that works (and very efficiently in terms of speed - aside from too much average memory consumption in some cases) with my current project is "regions".
The thing is I decided to go with that only because it works. However, I'm still not sure how it's working. I'm trying to optimize my code as much as possible and I would love to know what I could do make it work even better (especially reducing memory usage would be ideal). Are there any specific things to have in mind? My code makes _heavy_ use of ref objects, sequences, string, pretty much everything. However, I'm pretty sure some memory isn't freed when it should (while with some of the other GCs, memory usage is usually much lower)
