Hello!
Since we are using Hibernate as ORM in our company with Netty libraries including Project Reactor, is it possible to use Hibernate Reactive with it?
I mean we are fetching data with Hibernate from one thread, processing it with callbacks in second thread and storing it in third (still with callbacks).
Using only Hibernate and JPA we are facing the issue of DefaultMergeEventListener#entityIsDetached consuming all CPU resources to merge the entity graph. Will using Hibernate Reactive be a solution?