hbxtly 发表于 2011-5-27 15:56:27

分析结果中事务与action的时间

Action()
{

   int i=0;

    lr_rendezvous("首页");

    web_reg_find("Text=鐑棬缃戞父",
               "SaveCount=count",
      LAST);

    lr_start_transaction("网游首页");

    web_url("djnetgame",
      "URL=http://192.168.0.154:7011/djnetgame/wml/ngcs.jw?",
      "TargetFrame=",
      "Resource=0",
      "RecContentType=text/html",
      "Referer=",
      "Snapshot=t1.inf",
      LAST);

    lr_end_transaction("网游首页",LR_AUTO);

    i=atoi(lr_eval_string("{count}"));

    if(i==0)
    {
      lr_error_message("Failed");
    }
    else
      lr_output_message("Pass");

   
    return 0;
}
以上为我的脚本

请教下为什么分析结果里90%的响应时间会有这么大的差别

hbxtly 发表于 2011-5-27 15:57:25

action的时间过长是和检查点的查询结果有关系?
页: [1]
查看完整版本: 分析结果中事务与action的时间