|
|
|
|
|
by bunderbunder
5280 days ago
|
|
Couldn't agree more. In a garbage collected language, object retention graphs and call stacks are everything when it comes to object lifetime. The garbage collector looks at them to figure out when it's time to clean up an object, so you need to be looking at them if you want to figure out why the GC isn't cleaning up that object. If those features aren't being used then there's a good chance that the problem is in the chair, not in the profiler. |
|