DAL, Session, Cache architecture
Posted
by subt13
on Stack Overflow
See other posts from Stack Overflow
or by subt13
Published on 2010-04-21T16:56:28Z
Indexed on
2010/04/21
17:03 UTC
Read the original article
Hit count: 837
I'm attempting to create Data Access Layer for my web application. Currently, all datatables are stored in the session. When I am finished the DAL will populate and return datatables. Is it a good idea to store the returned datatables in the session? A distributed/shared cache? Or just ping the database each time? Note: generally the number of rows in the datatable will be small < 2000.
Thanks
© Stack Overflow or respective owner