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

Popular posts from this blog

java - org.apache.http.ProtocolException: Target host is not specified -

java - Gradle dependencies: compile project by relative path -

ruby on rails - Object doesn't support #inspect when used with .include -