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
It's not 100% identical, but close. Only the Bind/Execute part is actually inside the loop in the executemany case. All other query setup is done once.
#295 reworks executemany to make it pipelined, which makes a big difference performance-wise.
In asyncpg (version 0.18.3), is this code:
identical to this:
conn.executemany("some insert query", bind_list)
?Because AFAIK this was/is the case with psycopg2.
The text was updated successfully, but these errors were encountered: