Should I use HttpRuntime.Cache?

我的未来我决定 提交于 2019-12-17 23:01:17

问题


I'm a beginner in asp.net, and have a few question of Cache:

  1. HttpRuntime.Cache only provides severals methods and I think I'm able to implement these methods with Dictionary by myself.
  2. If HttpRuntime.Cache is much better than Dictionary, why some people would like to implement their own cache framework.
  3. How about MS Enterprise Cache Block?

回答1:


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 this with dictionaries could be lots of work that you probably don't want to venture into as you will be basically reinventing the wheels and even if reinventing wheels doesn't bother you chances for getting it right are slim.

2)If HttpRuntime.Cache is much better than Dictionary, why some people would like to implement their own cache framework.

People wouldn't want to do that.

3) How about MS Enterprise Cache Block?

That's heavy artillery which is not always necessary when you need simple caching which could be achieved with what the framework already provides you out of the box.

Remark: In .NET 4.0 you should use the new System.Runtime.Caching namespace instead of HttpRuntime.Cache.

So to answer your question: Should I use HttpRuntime.Cache

Yes, unless you are using .NET 4.0 in which case you should use classes from the new System.Runtime.Caching namespace.



来源:https://stackoverflow.com/questions/8092448/should-i-use-httpruntime-cache

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!