This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Get rid of unbounded queues #6096
Labels
I8-footprint
An enhancement to provide a smaller (system load, memory, network or disk) footprint.
J0-enhancement
An additional feature request.
Unbounded queues are hard to proof to not leak, and even if that was done once, if the code around that changes, the assumption might break and we don't know – other than when we have a faulty assumption in an
expect()
.Instead of unbounded queues, we should use channels, futures and actual async code that allows for backpressure to happen rather than continuously fill a buffer.
The text was updated successfully, but these errors were encountered: