登录
首页 >  数据库 >  MySQL

mysql学习之了解查询缓存

来源:SegmentFault

时间:2023-02-24 21:16:10 315浏览 收藏

本篇文章给大家分享《mysql学习之了解查询缓存》,覆盖了数据库的常见基础知识,其实一个语言的全部知识点一篇文章是不可能说完的,但希望通过这些问题,让读者对自己的掌握程度有一定的认识(B 数),从而弥补自己的不足,更好的掌握它。

环境版本

  • mysql:

  • my.cnf
    文件中添加 query_cache_type=1
  • 服务运行时  

    set query_cache_type=1

参数介绍

参数解释
have_query_cache当前版本是否支持查询缓存功能
query_cache_limit允许 Cache 的单条 Query 结果集的最大容量,默认是
1MB
,超过此参数设置的 Query 结果集将不会被 Cache
query_cache_min_res_unit每次分配内存的最小空间大小,也就是每个 Query 的 Cache 最小占用的内存空间大小
query_cache_size使用的内存大小,默认值为
16M
,大小必须是
1024
的整数倍,如果不是整数倍,MySQL 会自动调整降低最小量以达到
1024
的倍数
query_cache_type控制 Query Cache 功能的开关,可以设置为
0(OFF)
,
1(ON)
2(DEMAND)
三种:
query_cache_wlock_invalidate控制当有写锁加在表上的时候,是否先让该表相关的 Query Cache 失效

补充

query_cache_type 值选项
解释
0(OFF)关闭 Query Cache 功能,任何情况下都不会使用 Query Cache
1(ON)开启 Query Cache 功能,但是当 SELECT 语句中使用的 SQL_NO_CACHE 提示后,将不使用 Query Cache
2(DEMAND)开启 Query Cache 功能,但是只有当 SELECT 语句中使用了 SQL_CACHE 提示后,才使用 Query Cache

query_cache_wlock_invalidate 值选项
解释
1(TRUE)在写锁定的同时将使该表相关的所有 Query Cache 失效
0(FALSE)在锁定时刻仍然允许读取该表相关的 Query Cache

初始准备

查看变量

mysql> show variables like '%query_cache%';
+------------------------------+----------+
| Variable_name                | Value    |
+------------------------------+----------+
| have_query_cache             | YES      |
| query_cache_limit            | 1048576  |
| query_cache_min_res_unit     | 4096     |
| query_cache_size             | 16777216 |
| query_cache_type             | ON       |
| query_cache_wlock_invalidate | OFF      |
+------------------------------+----------+
6 rows in set (0.00 sec)

查看初始缓存情况

mysql> show status like '%Qcache%';
+-------------------------+----------+
| Variable_name           | Value    |
+-------------------------+----------+
| Qcache_free_blocks      | 1        |
| Qcache_free_memory      | 16759656 |
| Qcache_hits             | 0        |
| Qcache_inserts          | 0        |
| Qcache_lowmem_prunes    | 0        |
| Qcache_not_cached       | 2        |
| Qcache_queries_in_cache | 0        |
| Qcache_total_blocks     | 1        |
+-------------------------+----------+
8 rows in set (0.01 sec)

参数解释

参数解释
Qcache_free_blocks目前还处于空闲状态的 Query Cache 中内存 Block 数目
Qcache_free_memory目前还处于空闲状态的 Query Cache 中内存 Block 数目
Qcache_hitsQuery Cache 命中次数
Qcache_inserts向 Query Cache 中插入新的 Query Cache 的次数,也就是没有命中的次数
Qcache_lowmem_prunes当 Query Cache 内存容量不够,需要从中删除老的 Query Cache 以给新的 Cache 对象使用的次数
Qcache_not_cached没有被 Cache 的 SQL 数,包括无法被 Cache 的 SQL 以及由于 query_cache_type 设置的不会被 Cache 的 SQL
Qcache_queries_in_cache目前在 Query Cache 中的 SQL 数量
Qcache_total_blocksQuery Cache 中总的 Block 数量

实践检验

动作 1:执行查询

mysql> select * from auth_user where id=1;

状态 1

mysql> show status like '%Qcache%';
+-------------------------+----------+
| Variable_name           | Value    |
+-------------------------+----------+
| Qcache_free_blocks      | 1        |
| Qcache_free_memory      | 16757640 |
| Qcache_hits             | 0        |
| Qcache_inserts          | 1        |
| Qcache_lowmem_prunes    | 0        |
| Qcache_not_cached       | 3        |
| Qcache_queries_in_cache | 1        |
| Qcache_total_blocks     | 4        |
+-------------------------+----------+
8 rows in set (0.00 sec)

动作 2:执行查询

mysql> select * from auth_user where id=1;

状态 2

mysql> show status like '%Qcache%';
+-------------------------+----------+
| Variable_name           | Value    |
+-------------------------+----------+
| Qcache_free_blocks      | 1        |
| Qcache_free_memory      | 16757640 |
| Qcache_hits             | 1        |
| Qcache_inserts          | 1        |
| Qcache_lowmem_prunes    | 0        |
| Qcache_not_cached       | 3        |
| Qcache_queries_in_cache | 1        |
| Qcache_total_blocks     | 4        |
+-------------------------+----------+
8 rows in set (0.00 sec)  

动作3:清理查询缓存

mysql> reset query cache;
Query OK, 0 rows affected (0.00 sec)

状态 3

mysql> show status like '%Qcache%';
+-------------------------+----------+
| Variable_name           | Value    |
+-------------------------+----------+
| Qcache_free_blocks      | 1        |
| Qcache_free_memory      | 16759656 |
| Qcache_hits             | 1        |
| Qcache_inserts          | 1        |
| Qcache_lowmem_prunes    | 0        |
| Qcache_not_cached       | 3        |
| Qcache_queries_in_cache | 0        |
| Qcache_total_blocks     | 1        |
+-------------------------+----------+
8 rows in set (0.00 sec)

总结

动作 1 执行后,

Qcache_inserts
更新为 1,即动作 1 被缓存,此时
Qcache_hits
为 0

动作 2 执行后,因为是同样的查询动作,所以此时

Qcache_inserts
不变,而
Qcache_hits
更新为 1 ,因为同样的查询动作被命中

动作 3 是清理查询缓存

强烈建议:如果业务中没有大量的相同查询,请关闭查询缓存功能

本篇关于《mysql学习之了解查询缓存》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于数据库的相关知识,请关注golang学习网公众号!

声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>