视频1 视频21 视频41 视频61 视频文章1 视频文章21 视频文章41 视频文章61 推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37 推荐39 推荐41 推荐43 推荐45 推荐47 推荐49 关键词1 关键词101 关键词201 关键词301 关键词401 关键词501 关键词601 关键词701 关键词801 关键词901 关键词1001 关键词1101 关键词1201 关键词1301 关键词1401 关键词1501 关键词1601 关键词1701 关键词1801 关键词1901 视频扩展1 视频扩展6 视频扩展11 视频扩展16 文章1 文章201 文章401 文章601 文章801 文章1001 资讯1 资讯501 资讯1001 资讯1501 标签1 标签501 标签1001 关键词1 关键词501 关键词1001 关键词1501 专题2001
mysql的缓存机制_MySQL
2020-11-09 19:58:46 责编:小采
文档


mysql进行查询时候,如果有反复查询同一个请求的可能,建议开启缓存机制提高速度,


MySQL缓存机制简单的说就是缓存sql文本及查询结果,如果运行相同的sql,服务器直接从缓存中取到结果,而不需要再去解析和执行sql。如果表更改 了,那么使用这个表的所有缓冲查询将不再有效,查询缓存值的相关条目被清空。更改指的是表中任何数据或是结构的改变,包括INSERT、UPDATE、 DELETE、TRUNCATE、ALTER TABLE、DROP TABLE或DROP DATABASE等,也包括那些映射到改变了的表的使用MERGE表的查询。显然,这对于频繁更新的表,查询缓存是不适合的,而对于一些不常改变数据且有 大量相同sql查询的表,查询缓存会节约很大的性能。

查询必须是完全相同的(逐字节相同)才能够被认为是相同的。另外,同样的查询字符串由于其它原因可能认为是不同的。使用不同的数据库、不同的协议版本或者不同 默认字符集的查询被认为是不同的查询并且分别进行缓存。

下面sql查询缓存认为是不同的:

  1. SELECT * FROM tbl_name
  2. Select * from tbl_name

查询缓存相关参数

  1. mysql> SHOW VARIABLES LIKE '%query_cache%';
  2. +------------------------------+---------+
  3. | Variable_name | Value |
  4. +------------------------------+---------+
  5. | have_query_cache | YES | --查询缓存是否可用
  6. | query_cache_limit | 1048576 | --可缓存具体查询结果的最大值
  7. | query_cache_min_res_unit | 4096 |
  8. | query_cache_size | 599040 | --查询缓存的大小
  9. | query_cache_type | ON | --阻止或是支持查询缓存
  10. | query_cache_wlock_invalidate | OFF |
  11. +------------------------------+---------+

下面是一个简单的MySQL查询缓存机制例子:

  1. [mysql@csdba1850 ~]$ mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or /g.
  4. Your MySQL connection id is 3
  5. Server version: 5.0.45-community MySQL Community Edition (GPL)
  6. Type 'help;' or '/h' for help. Type '/c' to clear the buffer.
  7. mysql> set global query_cache_size = 600000; --设置缓存内存
  8. Query OK, 0 rows affected (0.00 sec)
  9. mysql> set session query_cache_type = ON; --开启查询缓存
  10. Query OK, 0 rows affected (0.00 sec)
  11. mysql> use test
  12. Reading table information for completion of table and column names
  13. You can turn off this feature to get a quicker startup with -A
  14. Database changed
  15. mysql> show tables;
  16. +----------------+
  17. | Tables_in_test |
  18. +----------------+
  19. | animals |
  20. | person |
  21. +----------------+
  22. 5 rows in set (0.00 sec)
  23. mysql> select count(*) from animals;
  24. +----------+
  25. | count(*) |
  26. +----------+
  27. | 6 |
  28. +----------+
  29. 1 row in set (0.00 sec)
  30. --Qcache_hits表示sql查询在缓存中命中的累计次数,是累加值。
  31. mysql> SHOW STATUS LIKE 'Qcache_hits';
  32. +---------------+-------+
  33. | Variable_name | Value |
  34. +---------------+-------+
  35. | Qcache_hits | 0 | --0次
  36. +---------------+-------+
  37. 8 rows in set (0.00 sec)
  38. mysql> select count(*) from animals;
  39. +----------+
  40. | count(*) |
  41. +----------+
  42. | 6 |
  43. +----------+
  44. 1 row in set (0.00 sec)
  45. mysql> SHOW STATUS LIKE 'Qcache%';
  46. +---------------+-------+
  47. | Variable_name | Value |
  48. +---------------+-------+
  49. | Qcache_hits | 1 | --表示sql在缓存中直接得到结果,不需要再去解析
  50. +---------------+-------+
  51. 8 rows in set (0.00 sec)
  52. mysql> select count(*) from animals;
  53. +----------+
  54. | count(*) |
  55. +----------+
  56. | 6 |
  57. +----------+
  58. 1 row in set (0.00 sec)
  59. mysql> select count(*) from animals;
  60. +----------+
  61. | count(*) |
  62. +----------+
  63. | 6 |
  64. +----------+
  65. 1 row in set (0.00 sec)
  66. mysql> SHOW STATUS LIKE 'Qcache_hits';
  67. +---------------+-------+
  68. | Variable_name | Value |
  69. +---------------+-------+
  70. | Qcache_hits | 3 | --上面的sql也是是从缓存中直接取到结果
  71. +---------------+-------+
  72. 1 row in set (0.00 sec)
  73. mysql> insert into animals select 9,'testsds' ; --插入数据后,跟这个表所有相关的sql缓存就会被清空掉
  74. Query OK, 1 row affected (0.00 sec)
  75. Records: 1 Duplicates: 0 Warnings: 0
  76. mysql> select count(*) from animals;
  77. +----------+
  78. | count(*) |
  79. +----------+
  80. | 7 |
  81. +----------+
  82. 1 row in set (0.00 sec)
  83. mysql> SHOW STATUS LIKE 'Qcache_hits';
  84. +---------------+-------+
  85. | Variable_name | Value |
  86. +---------------+-------+
  87. | Qcache_hits | 3 | --还是等于3,说明上一条sql是没有直接从缓存中直接得到的
  88. +---------------+-------+
  89. 1 row in set (0.00 sec)
  90. mysql> select count(*) from animals;
  91. +----------+
  92. | count(*) |
  93. +----------+
  94. | 7 |
  95. +----------+
  96. 1 row in set (0.00 sec)
  97. mysql> SHOW STATUS LIKE 'Qcache_hits';
  98. +---------------+-------+
  99. | Variable_name | Value |
  100. +---------------+-------+
  101. | Qcache_hits | 4 |
  102. +---------------+-------+
  103. 1 row in set (0.00 sec)

下载本文
显示全文
专题