DEV Community

[Comment from a deleted post]
Collapse
 
danstur profile image
danstur

Since those are most likely all io bound calls (say rest or DB calls) there's no processing going on and using async/await is exactly the right solution here. Parallel libraries are only useful if you want to parallelize actual CPU bound work.