ASP.NET disk-based caching
Posted by: Karl Seguin [MVP],
on 16 Aug 2009 |
View original | Bookmarked: 0 time(s)
I was recently playing with the idea of implementing disk-base caching for pages that had a high read-to-write ratio. On top of being practically read-only, these pages also require quite of bit of database work to put together, so they are ideal candidates for caching. I dismissed the idea of using the built-in ASP.NET caching because of two reasons. First, the number of pages needing to be cached is in the thousands, making it impractical from a memory stand point. Secondly, since this is hosted...