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 b3fdf16 commit 0ca084dCopy full SHA for 0ca084d
tokio-postgres/src/lib.rs
@@ -49,6 +49,12 @@
49
//! tokio::run(fut);
50
//! ```
51
//!
52
+//! # Behavior
53
+//!
54
+//! Calling a method like `Client::query` on its own does nothing. The associated request is not sent to the database
55
+//! until the future returned by the method is first polled. Requests are executed in the order that they are first
56
+//! polled, not in the order that their futures are created.
57
58
//! # Pipelining
59
60
//! The client supports *pipelined* requests. Pipelining can improve performance in use cases in which multiple,
0 commit comments