InversifyJS icon indicating copy to clipboard operation
InversifyJS copied to clipboard

Performance degradation with singleton pattern and container.getAll() for explicit dependency injection

Open unadlib opened this issue 1 year ago • 1 comments

Expected Behavior

When using InversifyJS with the singleton pattern and explicit dependency injection:

  1. The performance should remain consistent regardless of the order of dependencies in the list.
  2. Using container.getAll() to retrieve dependency instances should not cause significant performance degradation, even with complex dependency graphs.

Current Behavior

  1. When modules with more dependencies are placed earlier in the list for explicit injection, it leads to significant performance degradation.
  2. The performance worsens as the number of dependencies and the complexity of the dependency graph increases.
  3. Using container.getAll() to iterate through the list and obtain each dependency instance becomes increasingly slow with larger and more complex dependency lists.

Possible Solution

  1. Optimize the way InversifyJS resolves and instantiates dependencies in the singleton pattern, especially when using container.getAll().
  2. Implement a caching mechanism for resolved dependencies to reduce repeated resolution of complex dependency chains.
  3. Provide an alternative method to container.getAll() that is more efficient for large dependency graphs.
  4. Offer guidance on optimal ordering of dependencies to minimize performance impact.

Steps to Reproduce (for bugs)

  1. Set up a project using InversifyJS with the singleton pattern.
  2. Create a list of dependencies for explicit injection, with modules having varying numbers of dependencies. Ensure some modules have complex dependency chains.
  3. Use container.getAll() to retrieve instances of these dependencies.
  4. Measure performance with different orderings of the dependency list, particularly with more complex dependencies at the beginning vs. the end of the list.
  5. Observe the performance difference and increased resolution time as the list grows and more complex dependencies are moved to the front.

Additional context:

  • This issue becomes more pronounced in larger applications with numerous dependencies.
  • The performance impact may vary depending on the specific structure of the dependency graph.

unadlib avatar Aug 29 '24 18:08 unadlib

Hey @unadlib,

Inversify's architecture has their pros and cons. It allows to provide a vast variety of features other libraries simply can't. But as you correctly guessed it comes with a cost: the planner relies on complex graphs which are constantly being recreatead. Therefore, inversify needs to create the plan and traverse it to instantiate the object. Generating plans comes with an intensive use of GC, allocating and freeing a vast amount of objects, that's not performant friendly at all.

But singleton instances are cached, you should enjoy the benefits of caching this way.

So, are you saying container.getAll is not relying on cached singleton instances? Just to know, let's try to figure out a way to recreate this with a relatively simple case.

notaphplover avatar Oct 21 '24 17:10 notaphplover

Closing the issue since no additional details nor a minimum reproduction code were provided. I'm open to reopen the issue once we get more info to diagnose the issue and work on it.

notaphplover avatar Nov 14 '24 09:11 notaphplover