core-async

2021-03-07T18:26:49.030900Z

I’m trying to use core async for a project but I clearly don’t understand it well. I’ve posted a detailed question here: https://stackoverflow.com/q/66500942/1395149

Ben Sless 2021-03-07T19:29:41.031100Z

You can break this problem in two: one is mapping async operations on a collection. A good tool for that is pipeline-async

Ben Sless 2021-03-07T19:30:41.031300Z

the other is rate limiting a "stream" of messages. Imagine you had a process which takes messages from one channel, passes them to another, but doesn't do it faster than some rate? how would you implement it?

2021-03-07T21:59:19.032300Z

Thanks for the tips, I’ll see if I can figure those out.