-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Query pipelining #408
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestlow priorityThis issue exists to acknowledge a proposal but isn't being worked onThis issue exists to acknowledge a proposal but isn't being worked on
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestlow priorityThis issue exists to acknowledge a proposal but isn't being worked onThis issue exists to acknowledge a proposal but isn't being worked on
Type
Fields
Give feedbackNo fields configured for issues without a type.
Currently, query execution functions require either a const borrow of a connection pool, or a mutable borrow of a Transaction. This makes it impossible to prepare multiple queries and execute them in a pipelined fashion within a single transaction.
tokio-postgreshas this and it's an impressive feature.