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
- What is donut caching
- When should you use it
- How do you implement in ASP.net
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.