I have a dataset that contains business rules for my app. I'd like to fill this dataset on Application_Start then place it into ASP.NET cache. The dataset only rarely changes. There are no application updates made to the dataset. Will this work? Are there any
threading issues with multiple sessions retrieving data from this "central" dataset or would I need to create a new copy for each session and store it in session cache?
use an XML stream of the dataset instead. It carries lesser baggage. The only thing is each time you wish to refer to the data, you need to load to a dataset, if your app understands the dataset better than an xml.
A good Author is one who makes familiar things new and new things familiar.
cantrellr
Member
20 Points
4 Posts
DataSet stored in ASP.NET cache
Aug 07, 2003 10:00 PM|LINK
Ganbhu
Member
420 Points
84 Posts
Re: DataSet stored in ASP.NET cache
Aug 08, 2003 05:47 PM|LINK
---- Dr. SJ