1. Data not in cache means ... the frequently requested data is saved in cache once it is fetched from server, if the erquest is the first time then this data is not present in cache. The cache is a dataset static object containing datatables.
2. Simultaneous means if from two clients on different browser access that page then these both requests first check in cache for the data required if not found then they ask DAL(data access component) to bring this datatable from sql server.
addiecarr
0 Points
3 Posts
Re: avoiding multiple requests of same data
May 12, 2012 07:19 PM|LINK
hi,
1. Data not in cache means ... the frequently requested data is saved in cache once it is fetched from server, if the erquest is the first time then this data is not present in cache. The cache is a dataset static object containing datatables.
2. Simultaneous means if from two clients on different browser access that page then these both requests first check in cache for the data required if not found then they ask DAL(data access component) to bring this datatable from sql server.
thanks