Search code examples
asp.netdonut-caching

Donut Caching Tutorials


Can someone point out a couple of good quality tutorials/pages for donut caching? Like everything else on the web, you can google a million things, but several of the articles I've found are a bit confusing.

I'm looking for

  1. What is donut caching
  2. When should you use it
  3. How do you implement in ASP.net

Solution

  • Donut caching is where you cache every thing on a page except a few dynamic regions. So you cache the doughnut but not the hole.

    You should use it when most of you page is static other than 1 changable section.

    You should read this on implementation advice.