Hi!
How can Hibernate be properly configured to obtain the results on a query between 2 datasources in a reasonable time?
It's taking about 1 second to generate the query and 1 second to display 10 results... and think that the whole table has about 11000 lines.
If the query is made between tables from the same datasource, all the 11000 lines are displayed in about 2 seconds.
We are using Spring for session managemet, and we have a session for each database.
Any ideeas to solve the time problem?
Thanks!
|