-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Avoid unnecessary async state machine generation #9871
Comments
Linking it the performance issues maybe? Anyone taking up that issue may want to dive deeper into optimization. |
I believe there is no longer any Does this issue also concerns any |
There are still stuff which could be changed in the codebase related to this, can this issue be reopened again? |
Can I assume this issue has been resolved? |
It should be fully resolved after merging the PR, no problem. |
We have plenty of code like below:
which doesn't actually await anything in an async method. Instead, we should rewrite them to
This can avoid unnecessary async state machine be generated to reduce GC pressure.
The text was updated successfully, but these errors were encountered: