带有 OutputCacheAttribute 的 mvc-mini-profiler

发布于 2024-11-26 16:22:48 字数 247 浏览 2 评论 0原文

我在测试站点上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫卆 2024-12-03 16:22:48

将输出缓存应用于控制器操作还会缓存探查器结果。当 OutputCache 应用于控制器时,大多数 ASP.NET MVC 管道都不会执行。

您可以将生成页面的日期时间信息添加到探查器中,例如:

profiler.Step("Generated: " + DateTime.Now.ToString());

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:

profiler.Step("Generated: " + DateTime.Now.ToString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文