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
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
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. |
|||
|
|