How can I set the query cache of MySql?
My “my.ini” file doesn’t contain the variable mysql_query_type or mysql_query_size at all…
How are these set?
Can they be set from PHP?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You may enable query caching by altering the
query-cache-typevalue in your MySQL configuration file. You may not change it from PHP, however you may clear it by sending the following query to MySQL:RESET QUERY CACHE.