How many MySql queries/second can be handled by a server?

前端 未结 3 1876
无人及你
无人及你 2020-12-30 03:59

I\'ve started developing a browser (database) game. My question is how many queries can a regular hosting handle (when I mean regular, I mean a shared hosting you cand find

3条回答
  •  猫巷女王i
    2020-12-30 04:12

    Many factors can influence the response time of a database. Hardware, application configuration, (mysql out of the box does not perform all that well), and last but not least, your coding!

    Badly written queries can bring make an app feel slow and sluggish. Using count(*) in your code, for a very trivial example, or having no indexes on the database, for example, will influence your db response time as your dataset grows.

提交回复
热议问题