本帖最后由 Nio 于 2011-5-17 10:41 编辑
Hits per Second Graph The Hits per Second graph shows the number of HTTP requests made by Vusers to the Web server during each second of the load test scenario run. This graph helps you evaluate the amount of load Vusers generate, in terms of the number of hits. You can compare this graph to the Average Transaction Response Time graph to see how the number of hits affects transaction performance.
Hits per Second==HTTP requests per Second: 每秒虚拟用户HTTP请求(服务器)数
HTTP请求的几个常用类型
HTTP method
| Descrīption
| GET | Send named resource from the server to the client. (从服务器上发送给客户端指定的资源)
| PUT | Store data from client into a named server resource. (从客户端存储数据到一个指定的服务器资源)
| DELETE | Delete the named resource from a server. (从服务器上删除指定的资源)
| POST | Send client data into a server gateway application. (发送客户端数据给服务器上的gateway应用)
| HEAD | Send just the HTTP headers from the response for the named resource. (对于指定的资源只发送HTTP header响应信息,即不传输主体数据) |
|