Live data from Hacker News

Viewing profile — asyncawaaait

asyncawaaait

HN member
Joined
Tue, Nov 10, 2020, 7:15 PM UTC
HN karma
12
Public activity
4 items

About asyncawaaait

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. 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…

  4. 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…