Apr
03
2009
Setting HTTP Cache info using ASP.NET
Posted by: vidarkongsli in Uncategorized, tags: asp.net, cache, caching, httpFound this nice page that summarizes how to set cache-related information in ASP.NET: ASP.NET Cache Examples and Overview






Entries (RSS)
ASP.NET Cache being stand-alone & InProc is a problem. Trying to “simulate” distribution through SqlCacheDependency is really a “hack” in my opinion. The right way to solve this scalability problem is through an in-memory distributed cache.
And, Microsoft is finally realizing it as well. They’re working on Velocity but that is still in its infancy and will take some time to stabalize and mature.
I personally like NCache which is really impressive because of its rich set of caching topologies (Mirrored, Replicated, Partitioned, Partition-Replica, and Client Cache). The cool thing is that it also has NCache Express which is free for 2-server environments.
Hi Mark. Nice NCache pitch.
Thanks for your comment, NCache looks like an interesting technology. However, in my opinion it is not quite on target with respect to what the original blog post is about, namely how to set HTTP headers to enable caching in front of the web application (in proxies, browsers, etc.).