Explain about Extensible output caching in ASP.NET 4.0 ?

 Posted by Bharathi Cherukuri on 8/29/2012 | Category: ASP.NET Interview questions | Views: 3249 | Points: 40
Answer:

The Extensible Output Caching is used to store the HTTP response and page output in memory. With the help of this Output Caching Feature, ASP.NET can serve the subsequent requests more quickly by retrieving the data from memory.
The default configuration settings are shown below:


<caching>
<outputCache defaultProvider="AspNetInternalProvider">
<providers>
<add name="DiskCache"
type="Test.OutputCacheEx.DiskOutputCacheProvider, DiskCacheProvider"/>
</providers>
</outputCache>
</caching>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response