MySQL Query Caching Part II
For those wondering how to do query caching here is a quick run down. 1) Edit the MySQL conf at the following to /etc/my.cnf for a 26M query cache use: query_cache_type = 1 query_cache_size = 26214400 2) Restart MySQL /etc/init.d/mysqld restart 3) Login to MySQL and run the following: mysql> SET GLOBAL query_cache_size = 26214400; […]