Better Flex memory profiling tools

Posted by verveguy on Stack Overflow See other posts from Stack Overflow or by verveguy
Published on 2009-12-18T20:42:33Z Indexed on 2010/05/21 0:20 UTC
Read the original article Hit count: 718

Filed under:
|
|
|

Does anyone know of any better tools that the Flex Builder Profiler? I've googled and googled to no avail.

While the FB tools are OK for small apps / small leak situations, they're nowhere near adequate for wading through the thicket of object references that can arise in a large scale Flex app (that is leaking memory heavily). In particular, any reasonably complex view structure ends up with huge numbers of parent/child object references to the top level view - none of which are at all relevant to finding the one or two refs from outside the parent child subgraph that are causing the whole bolus to be non-GC'able.

If no one has any better suggestions, I'm seriously considering writing a tool to parse the saved profile dumps that Flex Builder can generate so that I can do my own "graph pruning" to find the important refs. If I go this route, collaboration would be welcome!

© Stack Overflow or respective owner

Related posts about profiler

Related posts about memory-leaks