G
Guest
I have both datatables and custom objects that are specific to a session and
need to be cached for such things as paging, sorting, etc... As far as I
can tell, there would be 2 basic ways to do
this:
1. Use session state to store these objects.
2. Use the System.Web.Caching namespace to cache the objects using a session
specific key.
So, is one of these approaches better (more efficient & scalable) than the
other or is there another approach the is best? Using the database is not a
viable option for a variety of reasons, including query speed and load...
Thanks
need to be cached for such things as paging, sorting, etc... As far as I
can tell, there would be 2 basic ways to do
this:
1. Use session state to store these objects.
2. Use the System.Web.Caching namespace to cache the objects using a session
specific key.
So, is one of these approaches better (more efficient & scalable) than the
other or is there another approach the is best? Using the database is not a
viable option for a variety of reasons, including query speed and load...
Thanks