第一章:性能测试的常见指标

对于 B/S 架构的软件,web服务器性能指标有:

Avg Rps : 平均每秒钟的响应次数=总请求次数/秒数

Avg time to last byte per teerstion (mstes) : 平均每秒钟业务脚本的迭代次数

successful Rounds : 成功的请求数量

failed Rounds : 失败的请求数量

Successful Hits : 成功点击数

Failed Hits : 失败的点击数

Hits per Second : 每秒点击数

Successful Hits Per Second : 每秒成功的点击次数

Faild Hits Per Second : 每秒失败的点击次数

Attempted Connections :尝试连接数

Throughput : 吞吐率

C/S架构的软件,通常指:数据库,常用的指标有:

User Connections : 用户连接数,也就是数据库的连接数量

Number of Deadlocks : 数据库死锁

Butter Cache Hit : 数据库 Cache(隐藏,存储)  hit (打击,碰撞) 情况

原文地址:https://www.cnblogs.com/wanghonggang-521/p/7366842.html