In my web application deployed on Tomcat, there is a search page that can retrieve all objects from an Oracle database. These objects are phone cards objects that have properties like phone number, profile, etc
The client can have 100.000, 200.000 cards or more in the system. Actually when the client wants to see the result of his search, the system displays it in pages with 15 objects (or cards) per page. On the top of the page there is a direct link of the other pages. So the client can navigate trough all pages using these links or using the previous/next buttons. The problem is: when the client doesnt put any criteria into the search page (meaning that hes going to get all objects (= can be 10.000, 100.000 or more)), the system returns out of memory after a few long minutes. The search functionality returns a collection of objects. A page iterator splits it into several pages. I think that the collection that contains the result cannot handle it. By the way, Im using Kodo as a persistence manager.
Here is the method that retrieves all objects from a search (with an empty filter in this case) protected Collection execute(Class type, String filter) {
You need to change the way you are handling queries. Your basic problem is you are trying to instantiate many thousands of objects and this is causing the Out of Memory and will also cause the application to be very slow. Instead you need to only instantiate the objects you need at the time. This means introducing some sort of pagination into database access that is similar to the pagination of the web page.
You easiest way to do this is to have a navigatible cursor to your database. These way you can jump through the resultset however the customer wants and before you display each page you simply retrieve the rows you need from the database when you need them.
I am not familiar with Kodo so I can't give you specifics but I hope I've given you a mechanism to pursue.