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

Can you guys give me opinion on these scenario:
1. data list is large and update quite often
2. data list is small and does not update that often
3. any other interesting case that you guys think a noob like me should know

share|improve this question

1 Answer

Always prefer view scope to session scope. In the general case the data in a dataTable is not session-wide, it is for the current view.

You can use the session as some sort of cache, but that cache better be in another place - i.e. between your application and your storage.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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