You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contrary to ASP.NET apps, .Net Core doesn't like sync thread blocking operations.
Every File/DB/Net access that doesn't use async/await contributes to ThreadPool starvation.
The text was updated successfully, but these errors were encountered:
Use async/await whenever possible.
Contrary to ASP.NET apps, .Net Core doesn't like sync thread blocking operations.
Every File/DB/Net access that doesn't use async/await contributes to ThreadPool starvation.
The text was updated successfully, but these errors were encountered: