在 Centos 6.3 上,我试图在 Mysql 上启用查询缓存。我已启用查询缓存
SHOW VARIABLES LIKE 'query_cache_size';
query_cache_size 52428800
SHOW VARIABLES LIKE 'query_cache_type';
query_cache_type ON
当运行一些简单的选择查询(从标题中选择 *)时,Qcache_hits 始终保持为 0。
(我正在使用这些示例 mysql 数据库:https ://launchpad.net/test-db/+download )
show status like "Qcache%";
Qcache_free_blocks 1
Qcache_free_memory 52419904
Qcache_hits 0
Qcache_inserts 0
Qcache_lowmem_prunes 0
Qcache_not_cached 50
Qcache_queries_in_cache 0
Qcache_total_blocks 1
我没有办法弄清楚这里出了什么问题。有谁知道可能出了什么问题?