Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
We are using the dependency manager diagnostics API (the dependency graph) in our application to display all components (registered and unregistered) in the application UI (similar to the 'dm' shell command). We ran into a performance problem (requesting the whole dependency graph takes very long), and after profiling I found out that the ComponentImpl.getName method is the reason. The component name is generated each time the method is called, making the dependency graph generation slow.