php - Testing MySQL Updates Per Second Limit -
Assume I have 1 table and 100 rows in this table. The table is simple and contains only one auto increment [code> id area and a load_count
field.
Each time a web page loads, this query is executed and the load_count
is increased from 1 ...
UPDATE table_name SET load_count = load_count + 1 WHERE id = $ id
How can I test my query to my server per second? Can I test 10 page loads per second Or will I run into errors on 1000?
How can I simulate the number of page loads per second and the result of the record for MySQL performance?
Comments
Post a Comment