We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some terminal operations can be expressed as a combination of multiple intermediate operations, making them easier to represent in SQL:
AnyMatch
.anyMatch(p)
.filter(p).limit(1).count() > 0)
NoneMatch
.noneMatch(p)
.filter(p).limit(1).count() = 0
Some terminal operations can be enhanced with certain intermediate operations in order to optimize the SQL query that is being executed:
FindFirst
.findFirst()
.limit(1).findFirst()
ResultSet
FindAny
.unordered().limit(1).findAny()
The text was updated successfully, but these errors were encountered:
Work appended to the 'terminal' branch.
Sorry, something went wrong.
Work on #31
8a080da
Add tests for terminal operation optimization #31
53884c4
Move terminal operation optimizations to modifier, add tests, work #31
3519795
julgus
No branches or pull requests
Some terminal operations can be expressed as a combination of multiple intermediate operations, making them easier to represent in SQL:
AnyMatch
.anyMatch(p)
can be expressed as.filter(p).limit(1).count() > 0)
NoneMatch
.noneMatch(p)
can be expressed as.filter(p).limit(1).count() = 0
Some terminal operations can be enhanced with certain intermediate operations in order to optimize the SQL query that is being executed:
FindFirst
.findFirst()
can be expressed as.limit(1).findFirst()
to restrict the size of theResultSet
FindAny
can be expressed as.unordered().limit(1).findAny()
The text was updated successfully, but these errors were encountered: