“90% Percent Time” 表示90%的事务response time 都维持在某个值附近,不是 average response time * 90%;
这里的90%指的是,将测试结果由小到大排序后,去掉最大的10%的测试结果,剩余部分的最大值。
例如,测试结果中有20个值,分别是1,2,3,。。。,18,19,20,那么90%的值应该为18.
LR帮助中的解释为:
Statistically, to calculate the 90th percentile value:
1. Sort the transaction instances by their value.
2. Remove the top 10% instances.
3. The highest value left is the 90th percentile.
翻译如下:
按如下统计方法来计算90%的值:
1.对事务按值排序;
2.去掉10%最大值;
3.剩下的值中,最大的就是要计算的90%。
转载请注明原文地址: https://ju.6miu.com/read-200246.html