Maximum concurrent connections to MySQL

后端 未结 3 1313
名媛妹妹
名媛妹妹 2020-12-07 16:44

I want to set up a MySQL database for a social networking website for my college.

My app can have at most 10,000 users. What is the maximum number of concurrent My

3条回答
  •  抹茶落季
    2020-12-07 17:23

    As per the MySQL docs: http://dev.mysql.com/doc/refman/5.0/en/server-system-variables.html#sysvar_max_user_connections

     maximum range: 4,294,967,295  (e.g. 2**32 - 1)
    

    You'd probably run out of memory, file handles, and network sockets, on your server long before you got anywhere close to that limit.

提交回复
热议问题