Join Slack
Powered by
Question: what’s preferred, `prisma.$transaction` ...
# prisma-client
c
Casey Chow
06/27/2022, 5:19 PM
Question: what’s preferred,
prisma.$transaction
or
Promise.all
for parallel reads?
r
Roryl
06/27/2022, 6:02 PM
prisma.$transaction
is
sequential, not parallel
. You'll want
Promise.all
for parallel reads.
Open in Slack
Previous
Next