ASP.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1926 Page Views: 

Explain ASP.Net Caching?



Posted By: Avi Date: 6 November 2009 07:44:44 AM
 Answer:

ASP.Net Caching is a mechanism to store the frequently used data into the server memory which can be retrieved very quickly. And so provides both scalability and performance. For example if user is required to fetch the same data from database frequently then the resultant data can be stored into the server memory and later retrieved in very less time (better performance). And the same time the application can serve more page request in the same time (scalability).

But it also have some drawbacks. Suppose the server memory is filled with the data then the remaining part of the data is stored into the disk which slow down the complete system performance. That's why self limiting caching techniques are best; where once the server memory gets filled the data has been selectively removed from the server memory to ensure that the application performance is not degraded.


Posted By: eTechPlanet


Date: 6 November 2009 07:44:44 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image nWVrEP
Related Questions
ASP.Net : What do you mean by ViewState and what is its role?

What do you mean by ViewState and what is its role?

ViewState is a state which represents the state of the page that must persist across postback. Role....
Category: ASP.Net Date: 10/5/2010 6:17:19 PM
ASP.Net : Which data type is supported by RangeValidator control?

Which data type is supported by RangeValidator control?

Three datatypes are supported, viz. , String, Integer and Date.
Category: ASP.Net Date: 10/5/2010 2:20:19 PM
ASP.Net : Is it possible for a user browsing a website to read Web.config or Global.asax files?

Is it possible for a user browsing a website to read Web.config or Global.asax files?

No, he can't read these files as access to these files is not possible. This is because the section ....
Category: ASP.Net Date: 10/5/2010 11:44:20 AM
ASP.Net : To display the data in repeater control which template should be used?

To display the data in repeater control which template should be used?

Item Template should be used.
Category: ASP.Net Date: 10/5/2010 9:34:19 AM
ASP.Net : How does the RaiseBubbleEvent works?

How does the RaiseBubbleEvent works?

RaiseBubbleEvent implementation is done with the help of control , which cannot be overridden. The e....
Category: ASP.Net Date: 10/5/2010 12:50:20 AM