Hands-On Reactive Programming with Clojure
上QQ阅读APP看书,第一时间看更新

Backpressure

The main mechanism by which core.async allows for coordinating backpressure is buffering. core.async doesn't allow unbounded buffers as this can be a source of bugs and a resource hog.

Instead, we are required to think hard about our application's unique needs and choose an appropriate buffering strategy.