mysql缓存

来源:互联网 发布:中国程序员大神 编辑:程序博客网 时间:2024/06/03 13:24
mysql> SHOW VARIABLES LIKE 'query%';+------------------------------+---------+| Variable_name | Value |+------------------------------+---------+| query_alloc_block_size | 8192 || query_cache_limit | 1048576 || query_cache_min_res_unit | 4096 || query_cache_size | 0 || query_cache_type | OFF || query_cache_wlock_invalidate | OFF || query_prealloc_size | 8192 |+------------------------------+---------+7 rows in set (0.00 sec)

query_cache_type=0时表示关闭,1时表示打开,2表示只要select 中明确指定SQL_CACHE才缓存。

Qcache_free_memory  查询缓存目前剩余空间大小。

  Qcache_hits          查询缓存的命中次数。

  Qcache_inserts      查询缓存插入的次数。

  也就是说缓存的命中率为 Qcache_hits/(Qcache_hits+Qcache_inserts)

0 0