-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Skip unnecessary select
queries on create/update/delete
#8069
Comments
For example, I'm working on identity server, where I store user login and tokens. For example login endpoint returns const loginRequestHandler = async (request) => {
const userId = ...
const accessToken = ...
const refreshToken = hash(randomString());
await prisma.userToken.create({
data: {
id: refreshToken,
userId,
type: TokenType.AUTH,
dateValidTo: add(new Date(), { months: 6 }),
}
});
return { accessToken, refreshToken };
}
|
Is it any update on the performance for avoiding multiple query for just one query to update ? |
I was updating a row in a table but because of mapping it creates 3 Select query (completely I don't need it), Any way to optimize it? Because of that response time was take 4seconds and more depending upon latency. Prisma looks good to me. But as per performance(update, delete, updateMany) I can't say anything. Suggest me some solution. |
select
queries on create/update/delete
How is the PR prisma/prisma-engines#4595 that closed this issue related? The PR just optimized delete queries by using This issue is not about optimizing select statement for delete queries. It is about often not needing the result at all. It also didn't change create or update queries. |
Same issues (sill open) : |
@darthmaim Thank you for pointing that out, we should have communicated that better. There are two layers here:
The reason prisma/prisma-engines#4595 closed that issue is that we support (1) since Prisma 5.1.0 for create and update queries. Delete queries were the only ones remaining. We saw this ticket first of all as an optimisation opportunity. So once (1) was complete, we decided to close it. The question of implementing (2) remains open, as well as the issues @paulintrognon referenced. |
Usually, for select at least, I add |
Problem
Prisma is always trying return value from update/create/delete actions. But you don't need every time the returned value, therefore
SELECT
query is wasted.Suggested solution
Would be nice to have option not to do select query, like so:
The text was updated successfully, but these errors were encountered: