Viewing profile — asyncawaaait
asyncawaaait
HN member- Joined
- Tue, Nov 10, 2020, 7:15 PM UTC
- HN karma
- 12
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About asyncawaaait
No profile information was provided.
Recent public activity
-
comment
Comment #25054565
Stack traces were massively improved in 2.1. Using a good IDE (Rider or Visual Studio), debugging async/await code works as expected. Are you doing interop or calling unmanaged cod…
-
comment
Comment #25052338
There is a resource tradeoff. async/await has a minor CPU/memory impact, but it can also free up threads to do other work during an I/O bound operation. Threads have their own reso…
-
comment
Comment #25050452
How does async/await introduce complexity where threading wouldn’t? In my experience, the complexity is vastly reduced by not having to implement tricky asynchronous APIs (Task Par…
-
comment
Comment #25050364
Awaiting a storage operation (ie. look up user) in C# will allow other calls to proceed until the I/O is available to read. Synchronous code locks you into the model of handling on…