/  24
 
The MySQL Query Cache
Baron SchwartzPercona Inc
 
-2-
The Roadmap
How it worksWhat it isn'tMythsHow it uses memoryMonitoring and statusConfigurationTrivia (how it works with InnoDB)
 
What is the Query Cache?
Caches the result of a SELECT statement
 – The raw bytes
When there's a hit, just resends the resultDoes not cache execution plans

Share & Embed

More from this user

Add a Comment

Characters: ...

praba_tutyleft a comment

MySQL Query caching best fits for read only data. When the data in the cached table changes(insert, update or deleted) all the query caches are destroyed for that particular table. For data which gets modified, main memory caching platforms such as CSQL, memcached can be used.