We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef0a6a commit e732ea8Copy full SHA for e732ea8
book/src/07_threads/09_bounded.md
@@ -3,7 +3,7 @@
3
So far we've been using unbounded channels.\
4
You can send as many messages as you want, and the channel will grow to accommodate them.\
5
In a multi-producer single-consumer scenario, this can be problematic: if the producers
6
-enqueues messages at a faster rate than the consumer can process them, the channel will
+enqueue messages at a faster rate than the consumer can process them, the channel will
7
keep growing, potentially consuming all available memory.
8
9
Our recommendation is to **never** use an unbounded channel in a production system.\
0 commit comments