Tridip Bhattacharjee

Tridip Bhattacharjee

  • NA
  • 1.2k
  • 74.1k

ASP.Net MVC What is Donut Caching

May 15 2018 3:28 AM
i know output cache which is used to cache partial view like

  1. ChildActionOnly]  
  2. [OutputCache(Duration = 10)]  
  3. public PartialViewResult PartialViewCacheChild()  
  4. {  
  5.     return PartialView("_PartialViewForCache");  


Donut Caching is different from [OutputCache(Duration = 10)] ?

how to cache my main full view ?

what is Donut Caching and what is its advantage?

please guide me. thanks

Answers (3)