ASP.NET Data Caching? Memcache equivalent

2020-06-06 02:36发布

Having used PHP on Linux a lot, I'm used to using memcache so that the database doesnt have to be accessed on every single request. What do people use on Windows the achieve this? From the asp.net mvc applications which I've seen, none of them use any sort of cache, they just hit the database on every request? Is this common, and if so, why is it acceptable?

4条回答
ら.Afraid
2楼-- · 2020-06-06 03:03

Very few professionally built mvc apps would 'hit the database on every request', mvc is still built on top of the asp.net infrastructure which has a robust and proven cacheing engine.

FYI: Microsoft's memcache equivalent is called Velocity http://blogs.msdn.com/b/velocity/

查看更多
乱世女痞
3楼-- · 2020-06-06 03:15

You can use Memcache on Windows as well. A very good version of Memcache is available from Northscale.

查看更多
劳资没心,怎么记你
4楼-- · 2020-06-06 03:17

There is a Memcache equivalent for ASP.NET, it is AppFabric (code name Velocity). You can find out how to install and use it here, there are also detail instruction and whitepapers.

查看更多
ら.Afraid
5楼-- · 2020-06-06 03:19

You can use memcached also. There are also other alternatives. You may also check Scott Gu's post about the new cache extensibility model introduced in ASP.NET 4.0.

查看更多
登录 后发表回答