English 中文(简体)
JMeter中的一些类似之处?
原标题:Something like thread.join in JMeter?

我有大约50个用户的 j计测试。 试验的开始会产生一个标志,有些则设置了 st。 我不想让这一切发生,因为对我不感兴趣的部分考验,会有太多的争论。 因此,我有10秒的宽限期。 当时有一份特别的吉大港定居地申请,其中我要求50个用户分送超过1秒的两秒钟,即吉大港定居区每20个ms。 这是为了确保50个用户同时执行这一部分。 理想的情况是,如在 log/amp之后的read子(join)()会帮助在这里,然后是另一个gu子。

j径中是否有类似于read的jo子?

最佳回答

为了便于阅读,你可以使用

If you want this request load of 1 every 20ms to continue (rather than a single burst) then you can use a Constant Throughput Controller to define the actual rate of requests you want JMeter to run. You can configure each thread to run at a rate of 60 requests per minute and this will give you one hit every 20ms (based on 50 threads with response times always less than 1 second). You can also tell JMeter to just make sure your load is 1/20ms no matter how many threads you use and it will dynamically adjust. This option is perhaps more useful in the context of load testing.

注 在使用CTT控制器时,你可能希望在

问题回答

暂无回答




相关问题
What to look for in performance analyzer in VS 2008

What to look for in performance analyzer in VS 2008 I am using VS Team system and got the performance wizard and reports going. What benchmarks/process do I use? There is a lot of stuff in the ...

SQL Table Size And Query Performance

We have a number of items coming in from a web service; each item containing an unknown number of properties. We are storing them in a database with the following Schema. Items - ItemID - ...

How to speed up Visual Studio 2008? Add more resources?

I m using Visual Studio 2008 (with the latest service pack) I also have ReSharper 4.5 installed. ReSharper Code analysis/ scan is turned off. OS: Windows 7 Enterprise Edition It takes me a long time ...

Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

热门标签