OutputCache 一个只有 returns 个 View 的 ActionResult
OutputCache an ActionResult that only returns a View
[OutputCache] 这样的东西有意义吗?
[HttpGet]
public ActionResult About()
{
return this.View("About");
}
这取决于视图中的内容。例如,如果它是一个较重的视图并且所有用户的输出都相同,那么是的,您应该使用 [OutputCache]
过滤器。这将减少服务器端的时间:
- 查看搬迁
- 查看解析
当您使用 [OutputCache]
过滤器时,请考虑正确设置参数。即缓存持续时间和其他需要的。
[OutputCache] 这样的东西有意义吗?
[HttpGet]
public ActionResult About()
{
return this.View("About");
}
这取决于视图中的内容。例如,如果它是一个较重的视图并且所有用户的输出都相同,那么是的,您应该使用 [OutputCache]
过滤器。这将减少服务器端的时间:
- 查看搬迁
- 查看解析
当您使用 [OutputCache]
过滤器时,请考虑正确设置参数。即缓存持续时间和其他需要的。