prisma-engines
prisma-engines copied to clipboard
Reduce the number of queries per SELECT
To reduce pool saturation, we should reduce the number of roundtrips per SELECT query. Instead of triggering separate selects, we could instead run them all in one query by joining the data in the database.
This would help with the ticket in https://github.com/prisma/prisma/issues/4280