function dba_mysql_report_help_connections in Database Administration 7
1 call to dba_mysql_report_help_connections()
- dba_mysql_report_output in database/
mysql.report.inc - Build mysqlreport output.
File
- database/
mysql.report.inc, line 568 - Provides database driver specific report functions.
Code
function dba_mysql_report_help_connections() {
return t("At some time since MySQL was last started, you were using all available MySQL connections. By default, MySQL allows 100 simultaneous connections, however on a well tuned server most queries last less than a second so even on a busy web server you rarely have more than a couple dozen simultaneous connections. It is generally not advisable to increase the connection limit beyond 100, unless you already have a well tuned server and the database is supporting multiple web servers. Before you consider raising this limit, look into first optimizing your queries and perform other tuning.\n\nTo allow additional MySQL connections, adjust the max_connections tunable.");
}