0

I'm performing performance testing of a computer application (JAVA). The test concerns the response time (t) obtained while testing the application with a certain number of concurrent threads (th) and a certain amount of data (d).

Suppose I have the following results:

+------+-------+-----+
|  th  |   d   |  t  |
+------+-------+-----+
|   2  |   500 |  A  |
+------+-------+-----+
|   4  |   500 |  B  |
+------+-------+-----+
|   2  |  1000 |  C  |
+------+-------+-----+
|   4  |  1000 |  D  |
+------+-------+-----+

How can i benefit the most of these results such as knowing the limit of my app as well as creating meaningful graphs to represent these results.

I'm not a statistics person so pardon my ignorance. Any suggestions would be really helpful (even related statistics technical keywords I can Google).

Thanks in advance.

EDIT

The tricky part for me was to determine the application's performance evolution taking both the number of threads and the amount of data into consideration in one plot.

4

1 回答 1

2

是的,有一种方法,请查看我用油漆制作的以下示例(我选择的数字只是随机的): 线程和数据 VS 时间

于 2013-03-19T10:16:18.657 回答