Per-Ake Minborg
Per-Ake Minborg
Could you provide more information? For example, under which conditions the Status is not loaded. If it is not loaded, is `null` returned instead? Can you provide the logs of...
JPAStreamer never caches values internally. If you run the https://github.com/speedment/jpa-streamer-demo/tree/master/hibernate demo on your settings, do you get the same problem?
This is how Lombok is run under JPMS JDK9+ with module-info.java The configuration of the compiler plug-in should contain the following: ``` org.projectlombok lombok 1.18.12 ```
I think projection with `map(select("col1", "col2"))` could wait until the next release or could be in the enterprise version
Projection should be provided according to the example below: ``` jpaStreamer.stream(sc) .sorted(Film$.length.reversed()) .limit(15) .map(Projection.select(Film$.filmId, Film$.title)) .map((Tuple t) -> String.format("filmId: %d, title: %s ", t.get(0), t.get(1, String.class))) .forEach(System.out::println); ``` Thus, `Projection.select(...)`...
Customer reports: " I solved the issue by manual open and close jpastream every query. Connection leak don't happening and everything on server is good working . But I hope...
Is this easily fixed @glukos ?
Any news on this?
Also, this class specifically mentions another library (chronicle-queue). Either it should be generic or moved to Q.
Are we going to do this?