You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of our transactions insert many events, and it's inefficient for each query to do two round trips to the server to prepare the statement then execute it. Mysql docs recommend inserting using a single INSERT with multiple VALUES tuples to speed up inserts.
I think we can achieve this by introducing a manyInserter type:
Some of our transactions insert many events, and it's inefficient for each query to do two round trips to the server to prepare the statement then execute it. Mysql docs recommend inserting using a single
INSERT
with multipleVALUES
tuples to speed up inserts.I think we can achieve this by introducing a
manyInserter
type:and an API to insert many events:
We can provide a default implementation like we do for
inserter
.The text was updated successfully, but these errors were encountered: