-
Notifications
You must be signed in to change notification settings - Fork 35
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
Implements @QueryHints or similar #320
Comments
Thank you for the suggestion! I will take a closer look. |
I think I can try drafting a PR if you find it valuable. I was thinking of expanding |
Yes, that would definitely be valuable. Expanding the |
@minborg could you also share your view on this? |
Sorry for not paying attention to your draft sooner! Completely missed it. I've left a comment regarding missing JavaDocs, other than that it looks great. Thank you for helping out! Before I can merge your changes I need you to sign a Contributor Licence Agreement. We have described why and how that is done here: https://github.com/speedment/jpa-streamer/blob/master/CONTRIBUTING.md. |
I just merged your changes into the development branch. I cannot say for sure when we will make the next official release but most likely within the next month. Your name is now also on the list of contributors. Thanks again for your valuable input and contribution! |
LGTM! |
To process large amount of data is sometime needed to provide additional configuration for the underlying JDBC driver, eg. to disable full resultsets cache in ram.
This is particularly useful to enable cursor "streaming" on the dbms side: eg. getting-results-based-on-a-cursor.
Usually this is implemented with
@QueryHints
annotations in spring or.withHint
methods on Panache repositories.I strongly think that this feature greatly fits JPAStreamer as it permits streaming at all layers involved.
The text was updated successfully, but these errors were encountered: