Closed vbergeron closed 8 months ago
Following ideas in #605, we can reduce the number of message exchanged and speed up some part of the client-server communication.
This PR replace this exchange :
> Bind > Flush [expect BindComplete] < BindComplete > Execute > Flush [expect CommandComplete] < CommandComplete > Sync [expect ReadyForQuery]
By this one :
> Bind > Execute > Flush [expect BindComplete] [expect CommandComplete] < BindComplete < CommandComplete > Sync [expect ReadyForQuery]
Following ideas in #605, we can reduce the number of message exchanged and speed up some part of the client-server communication.
This PR replace this exchange :
By this one :