I want to make stress test to see if there is locks or deadlocks happen, when 400 different rows updated per second with one select on random row per second on the same time.
I have methods in PHP that do it. The question is how can I simulate the 400 updates simultaneously (like from different users)
Regarding this answer: Simultaneous Requests to PHP Script
Will the requests be queued?
the requests come from the same client AND the same browser; most browsers will queue the requests in this case, even when there is nothing server-side producing this behaviour.
I'm trying multi curl right now. Sending 400 requests at the same time. But I only get now around 25 updates per second.