You are here

function dba_mysql_report_help_buffer_used in Database Administration 7

1 call to dba_mysql_report_help_buffer_used()
dba_mysql_report_output in database/mysql.report.inc
Build mysqlreport output.

File

database/mysql.report.inc, line 498
Provides database driver specific report functions.

Code

function dba_mysql_report_help_buffer_used() {
  return t("You have used a significant amount of the allocated key buffer.  The key buffer is used only by the MyISAM storage engine (not the InnoDB storage engine), however note that MySQL uses the MyISAM storage engine for all temporary tables even if the InnoDB storage engine is being used for everything else.\n\nTo improve MyISAM performance, consider raising the key_buffer_size tunable to allocate more memory to the MySQL key buffer.");
}