0

我在我的服务器上使用 CMS (WordPress) 时遇到性能缓慢的问题。

我跑了SHOW STATUS LIKE 'Qcache%';

结果:

Variable_name               Value
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

我认为零值不好。有谁知道这些值是否可以?如果不是,您对我如何提高我的网站相对于 MySQL 的性能有什么建议吗?

谢谢。

修正

在运行上面的命令之前,我运行了SHOW VARIABLES LIKE 'have_query_cache';.

结果:

Variable_name       Value
have_query_cache    YES

修正案#2

然后我跑了SHOW VARIABLES LIKE 'query_cache%';

结果:

Variable_name                   Value
query_cache_limit               1048576
query_cache_min_res_unit        4096
query_cache_size                0
query_cache_type                ON
query_cache_wlock_invalidate    OFF

修正案#3

然后我跑了SHOW VARIABLES LIKE 'log_slow_queries';

结果:

Variable_name       Value
log_slow_queries    OFF
4

1 回答 1

1

这些值表明查询缓存未激活。见http://dev.mysql.com/doc/refman/5.1/en/query-cache-configuration.html

于 2012-08-13T19:31:43.593 回答