Improve plugin loading performance#2973
Improve plugin loading performance#2973Jack251970 wants to merge 3 commits intoFlow-Launcher:devfrom
Conversation
WalkthroughWalkthroughThe changes involve a transition from synchronous to asynchronous processing in the plugin management system of the application. Key methods in several files have been updated to return Changes
Possibly related PRs
Suggested labels
Poem
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (2)
Additional comments not posted (10)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
This comment has been minimized.
This comment has been minimized.
| PluginSettings = pluginSettings; | ||
| } | ||
|
|
||
| internal IEnumerable<PluginPair> Setup() |
There was a problem hiding this comment.
why would you not use a generic version of task?
This comment has been minimized.
This comment has been minimized.
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details.
See ❌ Event descriptions for more information. If the flagged items are 🤯 false positivesIf items relate to a ...
|
It seems this optimization is invalid. The instance-creating functions are executed very fast, and thus concurrency are hard to optimize their performances. |
Improve plugin loading performance using concurrency