You are viewing a single comment's thread.

view the rest of the comments →

BlueSpeed ago

In asp.NET async and await are used to release a thread back to the threadpool while waiting on long running I/O operations like a database query. The end result is the server can handle more requests with the same size threadpool.