this post was submitted on 28 Jan 2024
675 points (94.8% liked)

Programmer Humor

32070 readers
478 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] sebsch@discuss.tchncs.de 10 points 7 months ago* (last edited 7 months ago)

Imagine a webser or proxy and for every incoming request it creates an new thread ๐Ÿ’ฃ

Yes you're right if it's a second or third thread it is/may be fine. But if you're i/o bound and your application has to manage quite a lot of that stuff in parallel, there is no way around delegating that workload to the kernel's event loop. Async/Await is just a very convenient abstraction of that Ressource.