Groups | Blog | Home
all groups > asp.net caching > april 2005 >

asp.net caching : WHere does caching take place ?



Chakra
4/21/2005 12:00:00 AM
If an ASP.NET application creates a dataset, is this dataset stored in
server or client ? On the other hand, if it creates a 'Cache' object , will
that be created on server, or client ?

Brock Allen
4/21/2005 5:56:29 AM
The DataSet is an in memory object in your .NET code which only runs in the
server. What you do with it dictates how long the DataSet lives. If you just
create it to do DataBinding and that's it, then it's going to be gone after
the request. If you put it in the ASP.NET data cache, then it will be held
in memory in the server.

-Brock
DevelopMentor
http://staff.develop.com/ballen



[quoted text, click to view]


Chakra
4/22/2005 12:00:00 AM
Time degrades to 1.5 times , when others use different parts of the
application (query/ data entry). The only contentious area (mutex) could be
the use of log4net instrumentation (using ADO.NET logs).


[quoted text, click to view]

Chakra
4/22/2005 12:00:00 AM
Thanks Brock for our answer. I replied with a performance degradation
problem that i had in some other context - sorry for that (!)

..
[quoted text, click to view]

AddThis Social Bookmark Button