I would like to use query cache on MySQL, but my doubt is if I update or insert data on already cached query, will the cache reflect it?
Will it return only the cached query or the updated query?
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.
MySQL’s query cache works automatically. You shouldn’t have to worry about it becoming inconsistent like that.
In general terms, an update has the effect of invalidating any cached queries that would be affected.