标题: 询问有关"unique number"类型的参数设置 [打印本页] 作者: morebetter 时间: 2005-10-26 17:32 标题: 询问有关"unique number"类型的参数设置 在文档中介绍如何使用“unique number”的使用方法如下:
When you use a Unique Number parameter type, you specify a start number
and a block size. The block size indicates the size of the block of numbers
assigned to each Vuser. Each Vuser begins at the bottom of its range and
increments the parameter value for each iteration. For example, if you set
the Start number at 1 with a block of 500, the first Vuser uses the value 1
and the next Vuser uses the value 501, in their first iterations.
但是,我设置后却不是这样
脚本如下:
Action1()
{
"{key}";
lr_output_message("%s",lr_eval_string("{key}"));
return 0;
}
其中对key设置为start=1,block=500
但是在输出中仍是
1
2
是自动加1 ,并不是自动加500。
请问这是为什么呢?
请指教。谢谢作者: jut984907 时间: 2005-10-26 18:27 标题: 有关"unique number" 当有两个虚拟用户,每个虚拟用户循环100次时
第一个虚拟用户的第一个循环数值=1,第二个循环=2,第三个=3....
那么,第二个虚拟用户第一个循环数值=501,第二个循环=502,第三个=503....
block指每个虚拟用户使用数值的范围作者: morebetter 时间: 2005-10-28 17:57
十分感谢!作者: Lennon 时间: 2005-12-23 15:05
为什么我设start为4,blcok是100,update value on :each occurrence
int a=1