我对 MySQL 运行了以下 sql:
SHOW STATUS LIKE 'Qcache%';
这是我得到的:
Qcache_free_blocks 0
Qcache_free_memory 0
Qcache_hits 0
Qcache_inserts 0
Qcache_lowmem_prunes 0
Qcache_not_cached 0
Qcache_queries_in_cache 0
Qcache_total_blocks 0
我不明白为什么会这样,因为我确实仔细检查了查询缓存是否已启用属性,如下所示:
SHOW VARIABLES LIKE 'have_query_cache';
Variable_name Value
have_query_cache YES
有人可以帮忙吗?