| suamy88 wrote: |
|---|
| I think the problem is that I am generating many Login, I would like to know how can I generate just one login and make many transactions in my case. |
You're currently generating new users with a mean rate of 2 users per second (as shown in your
Random 1 component) -- are you saying that this is not what you want?
2 requests per second should be fine for most servers. However, the loop that you're doing from
doTransaction back to the Splitter component means that as soon as a user completes its request in doTransaction, it will, 50% of the times,
immediately go back to doTransaction again. So, you might want to route the loopback wire to the delay component instead.