|
|
|
|
|
by 1971genocide
3868 days ago
|
|
The main reason Asynchronous programming exist is because file operations are slower than CPU. With SSD and more hardware innovation how true will that stay ?
I do think evangelizing async programming is a good think. Async programming is essentially deferring some task so that your CPU stays busy. However you cannnot async your entire application. At some point you need to gather the various pieces of all your async call to perform some needed calculation. That is the main pain point of Async programming. |
|