If I'm optimizing a database that will be delivering multiple Drupal 7 websites, all using InnoDB, do I need to worry about [myisamchk] & [isamchk] sections, or can I just worry about the stuff within [mysqld]?
I'm assuming if I delete these sections, that the defaults will just kick in if they are needed.
I'm trying to document, outline my.conf best practices here http://groups.drupal.org/node/289613
innodb_file_per_tableorinnodb_file_per_table=1are the same. – Mike Gifford Apr 03 '13 at 18:47innodb_file_per_tableorinnodb_file_per_table=1is synonymous. The default forinnodb_file_per_tableis 1 for MySQL 5.6 GA (http://dev.mysql.com/doc/refman/5.6/en/innodb-parameters.html#sysvar_innodb_file_per_table) and 0 for MySQL 5.5 GA (http://dev.mysql.com/doc/refman/5.5/en/innodb-parameters.html#sysvar_innodb_file_per_table) – RolandoMySQLDBA Apr 03 '13 at 19:11