Should I use HttpRuntime.Cache?
HttpRuntime.Cache only provides severals methods and I think I’m able to implement these methods with Dictionary by myself. You think wrong. HttpRuntime.Cache is much more than a simple dictionary. It offers thread-safety and cache expiration policies. It provides possibilities of using custom implementation and benefit from distributed caching which is helpful in web farms. Implementing … Read more