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 72a28e5 commit cadb3b1Copy full SHA for cadb3b1
content/tokio/tutorial/channels.md
@@ -66,7 +66,9 @@ means that exclusive access is required to call it. We could open a connection
66
per task, but that is not ideal. We cannot use `std::sync::Mutex` as `.await`
67
would need to be called with the lock held. We could use `tokio::sync::Mutex`,
68
but that would only allow a single in-flight request. If the client implements
69
-[pipelining], an async mutex results in underutilizing the connection.
+[pipelining] (in short, sending many commands without waiting for each prior
70
+command's response), an async mutex results in underutilizing
71
+the connection.
72
73
[pipelining]: https://redis.io/topics/pipelining
74
0 commit comments