Pipelining #711
Unanswered
hermanbanken
asked this question in
Q&A
Pipelining
#711
Replies: 1 comment 1 reply
-
I think you are confusing batch query with connection pipelining. These are two different concept. Bun does not support query batching yet. But it does support bulk insert/update. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In HTTP and RESP (Redis) pipelining makes a tremendous difference in throughput achievable with a connection.
In SQL, this can be done with a batching, such as
pgx.Batch
. However, in a ORM like Bun it might be difficult to model this.Can pipelining be used with Bun, or is this out of scope?
Beta Was this translation helpful? Give feedback.
All reactions