-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
The reason Spring Data JPA generates a count(*) query when executing the existsById() method. #3814
Comments
There are several aspects. Also, Hibernate is a bit more lenient on the JPQL standard. Standard JPQL |
I think you misunderstood the It is not about applying a limit to the count query. It's about replacing it. Instead of |
@mp911de I have one more question. I know Identifiers cannot be null. Have a great day! |
@schauder I think I may have asked the question incorrectly due to my limited English skills. Once again, I appreciate your kind answer! |
A
No worries. Your English is fine. |
A But a benchmark will tell. |
If you would like us to look at this issue, please provide the requested information. If the information is not provided within the next 7 days this issue will be closed. |
Closing due to lack of requested feedback. If you would like us to look at this issue, please provide the requested information and we will re-open the issue. |
Hello.
I am studying Spring Data JPA and I have a question about the generated query when executing the
existsById()
.Despite of the
Id
is a unique column, is there a specific reason for using acount(*)
query?Out of curiosity, I tested a method like
existsByName()
for a regular column and found that it generates a query usingLIMIT
, which actually performed better.I am curious why a
count(*)
query is used when checkingexistsById(ID id)
inSimpleJpaRepository
.From my perspective, it seems that the query generation method only for
existsById()
could be defined withinQueryUtils
.I am curious about this matter.
I apologize if my poor English skills made it difficult for you to read.
The text was updated successfully, but these errors were encountered: