gpt4 book ai didi

jquery - 为什么Application_ResolveRequestCache的持续时间很长?

转载 作者:行者123 更新时间:2023-12-01 03:40:16 25 4
gpt4 key购买 nike

我有一个带有跟踪(日志)工具的 ASP.NET 应用程序。它使用 AJAX 来检索数据(控件)。我有这两个跟踪条目:

    protected void Application_ResolveRequestCache(Object sender, EventArgs e)
{
Log("Application_ResolveRequestCache", null);
}

protected void Application_AcquireRequestState(Object sender, EventArgs e)
{
Log("Application_AcquireRequestState");
}

这两个条目之间的时间差异是Application_ResolveRequestCache的持续时间(我认为)。方法Log依赖于单例类,该类写入HttpContext.Current.Trace

示例:用户在页面上执行某些操作,因为该站点向服务器发送 5 个 AJAX 请求(更新 5 个控件)。每个请求的 Application_ResolveRequestCache 持续时间为(按时间顺序):0.001、1.518、4.556、5.057 和 5.575(以秒为单位)。

在我的 Global.asax 中,我通过过滤器禁用了缓存:

public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new OutputCacheAttribute
{
VaryByParam = "*",
Duration = 0,
NoStore = true,
});
}

那么,即使禁用输出缓存,为什么 Application_ResolveRequestCache 仍需要时间?

注意:当前问题仅适用于 AJAX 请求。

附加信息:

AJAX 查询:

jQuery.ajax({
url: "/mvcget/ajax/LoadControl/",
data: properties,
type: "POST",
contentType: "application/x-www-form-urlencoded",
async: true
});

加载控制操作:

        [HttpPost]
public virtual ActionResult LoadControl()
{
var control = CreateControlFromRequest<ITemplatedControl>();
control.SaveUserValues();
var content = control.Render();
return Content(String.IsNullOrEmpty(content) ? " " : content);
}

最佳答案

您的测试代码并未测量调用 ResolveRequestCache 所需的时间。相反,它测量调用 ResolveRequestCache 和 AcquireRequestState 之间的所有内容所需的时间。

如果您向服务器发出并行请求,并且这些请求包含 session cookie,则 ASP.NET 运行时将序列化这些请求。在管道中保留这些请求所花费的时间将显示在 ResolveRequestCache 和 AcquireRequestState 方法调用之间。

参见Are AJAX calls processed in serial fashion on server if you use ASP.Net session state?有关 AJAX + Session 的更多信息。

编辑:我应该提到一些其他事件(例如路由)发生在 ResolveRequestCache 和 AcquireRequestState 之间。如果您定义了很多路由或者路由匹配逻辑特别复杂,这也会导致花费的时间增加。

如果您要在 Web 应用程序中进行准确的性能测量,请查看 http://www.iis.net/configreference/system.webserver/tracing .

关于jquery - 为什么Application_ResolveRequestCache的持续时间很长?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22325120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com