Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Resultset in session

i have a query which builds a resultset,which is has some three lakh (300k) records.And the resultset is placed in the session.i tried to improve by iterating resultset and place it in List>.But even after using this,we have performance issues.Is there any other way for this?

share|improve this question
8  
You add a question previously (stackoverflow.com/questions/7674150/resultset-in-session) about storing a resultset in the session. The answers you got told you not to do it. You haven't accepted any answer, and you don't follow the advice you got. Why should we help you? – JB Nizet Oct 11 '11 at 15:22
1  
Moreover, do you really think we can solve your performance issues without having any idea of the code you're running? – JB Nizet Oct 11 '11 at 15:23
See the post i had previously was in different application. – shashi27 Oct 11 '11 at 15:32
2  
So you think that just because the application is different, suddenly storing a resultset in a session becomes a good idea? Read and try to understand the answers you got. It's ALWAYS a bad idea. – JB Nizet Oct 11 '11 at 15:35
2  
300K records in session !! Who's design is that ? – Bhaskar Oct 11 '11 at 15:53
show 2 more comments

marked as duplicate by Dave Newton, home, Bojangles, Robert Harvey Oct 12 '11 at 1:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

It is a very bad idea to load such huge number of rows into memory and especially putting them into session. You need to implement pagination - modify the query to fetch a subset of rows and then when you need the next set execute a query again.

share|improve this answer

Yes, there's another way--don't put it in session.

Here's the thing: we don't know why you're putting it in the session, because you don't provide any details.

For pagination? Use a limit/offset mechanism and only request the current page's results.

For reporting? Generate the report at the end of whatever data narrowing functionality you're using and only store criteria in the session.

Or...?

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.