I'm confused about concurrent MySQL connections

前端 未结 6 1654
走了就别回头了
走了就别回头了 2021-02-14 01:14

So, I read a book in Mysql and it says that there\'s a limit on how many concurrent users that can access a database.

Does that mean that If I have 20k users browsing i

6条回答
  •  情深已故
    2021-02-14 01:30

    after reading i found this snippet

    20.000 concurrent users is 20.000 CONCURRENT DATABASE QUERIES... a user reading a post in your site, should not be counted in the concurrent user number... he is logged in to your site, but he is not requiring anything from the database... now, if he clicks in a link, the database will perform a query and, then, this user should be counted in the concurrent users number... only if 20.000 users click somewhere on your site AT THE SAME TIME you will have 20.000 concurrent users

提交回复
热议问题