I am new to jOOQ and consider replacing some JDBC code with jOOQ.
Looking at the jOOQ Java 8 streams is examples I start wondering if I can get a performance improvement by using jOOQ.
I have a PostgreSQL query with this characteristics: Merge Join (cost=1.34..7649.90 rows=30407 width=333) (actual time=0.042..46.644 rows=28264 loops=1)
At the database the server the first row is returned after 0.042 ms while the last row is returned after 46.644 ms.
But my JDBC does not return the ResultSet until it is complete.
Is jOOQ (with Java 8 streams) able to start handling tuples as soon as the are ready or is jOOQ limited by JDBC?