• Bene7rddso@feddit.de
    link
    fedilink
    arrow-up
    1
    ·
    5 months ago

    If you need to get multiple pieces of data for one request Async is great, but why would you work on different requests in the same thread? Why slow down one request because the other needs a bunch of computation?

    • Lmaydev@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      5 months ago

      You aren’t slowing down anything. If you didn’t use async that thread would be blocked.

      You’d need a thread per request even though they are sat doing nothing while waiting for responses.

      Instead when you hit an await that thread is freed for other work and when the wait is over the rest of the code is scheduled to run.