|
本帖最后由 xiaoxiaogt 于 2013-3-1 17:32 编辑
import lrapi.lr;
public class Actions
{
int total;
int i;
public int init() throws Throwable {
return 0;
}//end of init
public int action() throws Throwable {
lr.start_transaction("jisuan");
for (i=0;i<=10;i++) {
total = i;
System.out.println("this is:"+total);
}
lr.end_transaction("jisuan", lr.PASS);
return 0;
}//end of action
public int end() throws Throwable {
return 0;
}//end of end
}
出现TPS逐渐下降的问题,去掉打印之后很稳定。诸如此类的问题还有很多,JAVA VUSER的问题如何解决了。负载机是WIN2003,CPU使用没有达到峰值,内存也只用了1G,总共4G |
|