Reputation: 175
Is there a difference in the number of maximum concurrent connections between mysql standard edition and mysql enterprise edition? supposing the two mysql is on a two different server with the same specifications: 4Core Intel CPU and 4GB Memory
Upvotes: 4
Views: 956
Reputation: 4284
There is no difference of number of maximum concurrent connections, it depends of max_connections
parameter on my.cnf, and may you will need to change other config parameters as well.
See: http://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html#sysvar_max_connections
Upvotes: 4