Faster injector, new @deepkit/bench and @deepkit/run#642
Merged
Conversation
…endpoints logging
this is only used internally
…ment deepkit/injector was rewritten in its core. We have a lot of performance improvements: 2-4x improvement for very small containers (with less than 5 providers) 300x improvement (and more) for bigger containers with like 1000-2000 providers. the old version used a big switch-case, the new one direct references In general getting the reference to the DI factory directly allows to get the most performance increase. Doing it like this ``` const resolveService = injector.resolve(Service); const service = resolveService(); // direct reference to JIT factory ``` makes resolving dependencies very fast. By assigning the factory function now directly into dependency resolution makes the whole container almost optimal in performance. Currently, it hovers around 100mio ops/s, which is nearly identical to doing return `instance ||= new Service()`;
this allows to set a log level for a particular scope, for example allows to enable debug for a particular scope (or disable debug for a particular scope)
also remove unnecessary sizer call and export more symbols
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of changes
I decided to split the work and first publish faster injector before continuing with #640.
Relinquishment of Rights
Please mark following checkbox to confirm that you relinquish all rights of your changes: