在 MVC 3 和 EF 4 中缓存数据的最佳方式
在 ASP.NET MVC 3 和 EF 4 中缓存数据和页面输出(两者)的最佳方法是什么? 有没有相关的框架|库? 感谢大家;
Which is the best way to caching data and page's output (both) in ASP.NET MVC 3 and EF 4?
Is there any framework|library to this?
Thanks to all;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASP.NET MVC 已提供输出缓存 - 检查 OutputCacheAttribute 动作过滤器。 EF4 本身没有任何可用的缓存,但您可以检查 缓存包装器 添加缓存查询结果。
ASP.NET MVC already provides output caching - check OutputCacheAttribute action filter. EF4 itself doesn't have any caching available but you can check caching wrapper to add caching of query results.