Introduced in #5602, db/multi.go introduces a new abstraction layer called MultiInserter, which is good at turning many consecutive inserts into a single multi-row insert. This is useful for inserting new authorizations and other rows that are inserted in batches. Once it has been proven to be performant, we should expand its use into additional SA methods.
Introduced in #5602,
db/multi.gointroduces a new abstraction layer calledMultiInserter, which is good at turning many consecutive inserts into a single multi-row insert. This is useful for inserting new authorizations and other rows that are inserted in batches. Once it has been proven to be performant, we should expand its use into additional SA methods.