Is there an equivalent for oracle.jdbc.defaultRowPrefetch for Entity EJBs?
Since the pandemic I work a lot from home office, via VPN with high latency. I am running locally a weblogic hosted application that needs to connect to external datasource located at the office via that suboptimal connection.
I have already increased value of oracle.jdbc.defaultRowPrefetch which greatly improved overall performance of JDBC queries - now the data comes in bigger chunks, so there is less talking back and forth between my client and the DB.
Unfortunately the app still has some legacy Entity EJBs and they seem to be suffering from the same performance issue.
Is there any equivalent setting for EJBs like this oracle.jdbc.defaultRowPrefetch for JDBC? Any settings that could improve EJBs performance in poor latency environment?