core-async

Jakub Holý 2019-06-19T17:37:04.129500Z

Is a go block and a channel with the buffer length N a good use case for running up to N remote calls in parallel? (given a list of many items to process). Thank you!

ghadi 2019-06-19T17:40:34.129800Z

use one of the pipeline functions @holyjak

ghadi 2019-06-19T17:40:47.130100Z

but yes, the idea is sound

ghadi 2019-06-19T17:40:59.130500Z

you just can't do I/O in a go block

ghadi 2019-06-19T17:41:15.130900Z

(you can call something async that returns a channel)

ghadi 2019-06-19T17:41:27.131300Z

pipeline-blocking is the one you're looking for

Jakub Holý 2019-06-19T17:41:50.131600Z

Thanks a lot!