DEV Community

Discussion on: Serial Promises vs Parallel Promises

Collapse
 
tunaxor profile image
Angel Daniel Munoz Gonzalez

Nice write up!

When async/await first came out people were posting samples without even thinking abusing await's is not good!

Note: At some point, you may attempt to do too many async things at once. Now you've got to determine how many you can do, and create batches of that size to prevent thrashing. That's a post for another time.

Mixing generators too perhaps :P?
I'll be waiting that post!