Fork me on GitHub
#core-async
<
2019-06-19
>
Jakub Holý (HolyJak)17:06:04

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!

ghadi17:06:34

use one of the pipeline functions @holyjak

ghadi17:06:47

but yes, the idea is sound

ghadi17:06:59

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

ghadi17:06:15

(you can call something async that returns a channel)

ghadi17:06:27

pipeline-blocking is the one you're looking for