|
|
|
|
|
by dralley
1566 days ago
|
|
The point of async isn't that it is cleaner than threading. It can be, but by no means is that guaranteed. The point of async is that at scale threads start becoming expensive. If you don't have high performance requirements under heavy load, async is largely unnecessary. |
|