寻找 C# 缓存管理器
我正在为通用对象寻找一个好的缓存管理器。
我将 C# 与 ASP.NET 结合使用。我想使用 System.Web.Cache。所以我想要一个缓存管理器来关心缓存并实现 ADD、GET 和 UPDATE 等功能。
I'm searching for a good cache manager for generic objects.
I'm using C# with ASP.NET. I want to use System.Web.Cache
. So I want a cache manager that will care about the caching and implement functions like ADD, GET, and UPDATE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NVelocity、NCache 和 Microsoft P&P 缓存块
NVelocity, NCache, and the Microsoft P&P Caching block
对于进程内内存缓存,请查看以下内容:
对于 .NET 4:http://msdn.microsoft.com/en-us/library/dd997357(v=VS.100).aspx
对于早期版本:
http://msdn.microsoft.com/en-us/library/xsbfdd8c(v=vs. 71).aspx
http:// /codemaverick.blogspot.com/2007/01/caching-in-windows-application-i-was_8639.html
这些可以很容易地用于缓存对象,尽管后者主要用于缓存 ASP.net 页面 -如果这就是你想要的:)
For in-process memory caching take a look at the following:
For .NET 4: http://msdn.microsoft.com/en-us/library/dd997357(v=VS.100).aspx
For earlier versions:
http://msdn.microsoft.com/en-us/library/xsbfdd8c(v=vs.71).aspx
http://codemaverick.blogspot.com/2007/01/caching-in-windows-application-i-was_8639.html
Those can easily be used to cache objects, though the latter is mostly intended for caching ASP.net pages - if that's what you want :)