core-async

Eddie 2020-03-31T18:49:05.002900Z

I have an project that round trips each line of a CSV to an external service via an http request and writes the responses as a new CSV. Currently is operates purely off of lazy sequences. Do folks think re-implement this tiny project using channels would be a good way to learn core.async? If so, does anyone have a recommended resource that helped them grok core.async migration?

fmjrey 2020-04-01T13:25:13.003500Z

Just be mindful of not doing blocking IO within a go block

Eddie 2020-04-01T15:40:49.003800Z

Thank you @serioga and @fmjrey!