|
The query cache is a RAM based cache that stores the results of various SELECT
queries in RAM for extremely fast access to the data of queries that tend to be
run very frequently. It can usually give a significant performance
boost, but it is important to make sure it is being properly utilized. If it is too
large, valuable RAM could be wasted. Too small and the overall performance of MySQL
could drop due to having to re-run some frequently run queries.
Query Cache Stats
| Free Blocks: | 1 | |
| Free Memory: | 14572784 | |
| Hits: | 5362 | |
| Inserts: | 2779 | |
| Lowmem Prunes: | 0 | |
| Not Cached: | 78356 | |
| Queries In Cache: | 1621 | |
| Total Blocks: | 3319 |
|