51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2291|回复: 8
打印 上一主题 下一主题

[原创] 我的事物响应时间好像有点大,LR高手分析下

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2009-6-10 17:51:05 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我用Controller 测试我的主页 http://localhost:8080/test/index.jsp
事物响应时间看着比较大。下面是Trans Response Time(Sec)图。
我不明白的是我开了一个主页响应时间平均30sec?

[ 本帖最后由 sundf_good 于 2009-6-10 17:52 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2009-6-10 17:55:57 | 只看该作者
去掉think time就好了
回复 支持 反对

使用道具 举报

该用户从未签到

3#
 楼主| 发表于 2009-6-10 17:57:50 | 只看该作者
恩,我加think time 了,呵呵,我去改改
回复 支持 反对

使用道具 举报

该用户从未签到

4#
 楼主| 发表于 2009-6-10 17:59:57 | 只看该作者
不是,我那个脚本加think time 了,当前问的这个问题脚本没有加think time ,云层大哥
回复 支持 反对

使用道具 举报

该用户从未签到

5#
发表于 2009-6-10 18:04:09 | 只看该作者
你加个事务,看下回放脚本的时候多少时间?
回复 支持 反对

使用道具 举报

该用户从未签到

6#
 楼主| 发表于 2009-6-10 18:06:37 | 只看该作者
  1. #include "as_web.h"


  2. Action()
  3. {
  4.         web_url("club",
  5.                 "URL=http://localhost:8080/club",
  6.                 "Resource=0",
  7.                 "RecContentType=text/html",
  8.                 "Referer=",
  9.                 "Snapshot=t1.inf",
  10.                 "Mode=HTML",
  11.                 EXTRARES,
  12.                 "Url=/club/images/top01_tonglan.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  13.                 "Url=/club/images/liw.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  14.                 "Url=/club/images/main01lft_down.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  15.                 "Url=/club/images/nav02line.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  16.                 "Url=/club/images/topbg0.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  17.                 "Url=/club/images/jiantou01.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  18.                 "Url=/club/images/top01_nav03.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  19.                 "Url=/club/images/down02_01_down.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  20.                 "Url=/club/images/button01.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  21.                 "Url=/club/images/top01_nav01.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  22.                 "Url=/club/images/rgt_news_mid.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  23.                 "Url=/club/images/line01.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  24.                 "Url=/club/images/rgt_news_up.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  25.                 "Url=/club/images/rgt_news_mark.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  26.                 "Url=/club/images/rgt_news_down.gif", "Referer=http://localhost:8080/club/", ENDITEM,
  27.                 LAST);

  28.         return 0;
  29.         web_url("refreshstate.jsp_2",
  30.                 "URL=http://localhost:8080/club/refreshstate.jsp?ref=http%3A//localhost%3A8080/club/&turl=http%3A//localhost%3A8080/club/%23",
  31.                 "Resource=0",
  32.                 "RecContentType=text/html",
  33.                 "Referer=http://localhost:8080/club/",
  34.                 "Snapshot=t5.inf",
  35.                 "Mode=HTML",
  36.                 LAST);

  37.         return 0;
  38. }
复制代码
这是我的脚本。刚学嘿嘿
回复 支持 反对

使用道具 举报

该用户从未签到

7#
 楼主| 发表于 2009-6-10 18:06:59 | 只看该作者
你看这哪加啊
回复 支持 反对

使用道具 举报

该用户从未签到

8#
发表于 2009-6-11 10:03:28 | 只看该作者
代码中间的那一大段是什么啊,事务响应时间过长很可能就出现在那上面!!!
回复 支持 反对

使用道具 举报

该用户从未签到

9#
发表于 2009-6-11 11:01:29 | 只看该作者
首先不该有两个return0,然后要是你怀疑结果的真实性,就降低并发用户,看响应有没有加快。假如并发数很少了时间还是很大,那更简单了,手工测一下不就行了么?老对着个图能看出什么东西来呢?
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-19 11:37 , Processed in 0.122982 second(s), 28 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表