Hi All,
I want to search some data in a table which has almost 1 million records. I want to get the data from database and then want to store it in a temp table. Now if next time I need to take data, I will take it from temp table. Example would be.
In a table named
people of 1 million records, I want to search for people from New york. Let say the result is 10000 and I want to show only 50 on page. So I will be using pagination for this. Now on next call I dont want to repeat the search, I want to take it from temp table.
How will I achieve this in
JDBC and is it a good solution or not?
Thanks in advance.