Optimize MySQL Performance
Author: Collin VanDyck
The default install of MySQL is not optimized for InnoDB tables; all Cascade Server tables are of type InnoDB so that they will support transactions.
You can quickly check to see what level of caching the database is currently performing.
After tweaking and optimizing your configuration parameters, you should see something more like this:
You can see here that the query cache itself is now being used. We recommend incorporating the following variables into your [mysqld] settings:
Once you've made the changes, please restart your MySQL server and the CMS server.