带有 OutputCacheAttribute 的 mvc-mini-profiler
我在测试站点上使用 mvc-mini-profiler。当我将 OutputCacheAttribute 放在操作方法上时,探查器不会执行,并且始终返回缓存之前的最后一个值。
有没有办法告诉 mvc-mini-profiler 结果来自缓存,以便它可以更新他的状态?也许在客户端网站上,我们可以看到这样的信息:
http://localhost/Home (from cache) 2.1ms, +0.5ms
im using mvc-mini-profiler on a test site. When i put an OutputCacheAttribute on my action method, the profiler is not executed and always return the last value that he had before the cache.
is there a way to tell mvc-mini-profiler that the result come from the cache so it can update his state? Maybe on the client site, we could see this kind of information:
http://localhost/Home (from cache) 2.1ms, +0.5ms
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将输出缓存应用于控制器操作还会缓存探查器结果。当 OutputCache 应用于控制器时,大多数 ASP.NET MVC 管道都不会执行。
您可以将生成页面的日期时间信息添加到探查器中,例如:
Applying output caching to a controller action also caches the profiler results. When OutputCache is applied to a controller most of the ASP.NET MVC pipeline is not executed.
You could add the date-time information of when the page was generated to the profiler, something like: