13

有什么方法可以确定是否从 MySQL 查询缓存中检索到执行的查询?

当然......有很多方法可以在一般级别(SHOW STATUS LIKE '%qcache%'等)上计算缓存查询的数量,但我想具体了解当前执行的查询是否从 MySQL 缓存中加载。

例如,在 PHP 中,该函数mysql_insert_id();在单独的查询中返回最后插入的 ID。

mysql_is_query_from_cache($previous_query);在那个方向上,调用元数据函数来验证之前的查询结果是否实际上是从 MySQL 查询缓存中检索到的,这将是一种美

对此有什么想法吗?

4

4 回答 4

11

对于 MySQL 5.0 及更高版本,您可以使用 SHOW PROFILES 获取最近查询 ID 的列表,然后使用 SHOW PROFILE FOR QUERY %id_here% 查看是否有对缓存数据的引用。

这在http://www.dbasquare.com/2012/04/03/was-a-query-served-from-mysql-query-cache/以及其他一些方法中有更详细的解释。

于 2012-09-25T13:32:03.823 回答
6

谢谢@yuriy,我已经用你的“SHOW PFOFILE”建议做了一个代码示例,它就像一个魅力!'SHOW PROFILE FOR QUERY 2' 命令通过“将缓存结果发送到客户端”给出了非常漂亮的结果,这正是我正在寻找的触发器!:)

/* enable profiling */
$result = mysql_query('SET profiling = 1');

/* is profiling ON for this session? */
$result = mysql_query("SHOW VARIABLES LIKE '%profiling%'");

/* execute main query */
$result = mysql_query('SELECT COUNT(*) FROM orders');

/* show overview of current profiles */
$result = mysql_query('SHOW PROFILES');

/* show profiling stats for main query */
$result = mysql_query('SHOW PROFILE FOR QUERY 2');

http://dbm.home.xs4all.nl/mysqlshowprofile2.jpg

于 2012-09-25T14:52:36.890 回答
1

您可以执行两次相同的查询并检查他们的个人资料,例如

set global query_cache_size = 16777216;
set profiling = 1;

两次执行您的查询

select * from sbtest.sbtest1 limit 100;
select * from sbtest.sbtest1 limit 100;

然后检查配置文件,您将看到第二个查询比第一个查询花费更少的时间

mysql> show profiles;
+----------+------------+----------------------------------------+
| Query_ID | Duration   | Query                                  |
+----------+------------+----------------------------------------+
|        7 | 0.20415325 | set global query_cache_size = 16777216 |
|        8 | 0.26780725 | select * from sbtest.sbtest2 limit 100 |
|        9 | 0.00007350 | select * from sbtest.sbtest2 limit 100 |
+----------+------------+----------------------------------------+

使用“显示查询 ID 的配置文件”与 query_ID=8(第一个查询)和 query_ID=9(第二个查询)进行比较

mysql> show profile for query 8;
+--------------------------------+----------+
| Status                         | Duration |
+--------------------------------+----------+
| starting                       | 0.000023 |
| Waiting for query cache lock   | 0.000004 |
| checking query cache for query | 0.032402 |
| checking permissions           | 0.000088 |
| Opening tables                 | 0.000035 |
| System lock                    | 0.000014 |
| Waiting for query cache lock   | 0.049689 |
| init                           | 0.075707 |
| optimizing                     | 0.000015 |
| statistics                     | 0.000021 |
| preparing                      | 0.000012 |
| executing                      | 0.000004 |
| Sending data                   | 0.108332 |
| Waiting for query cache lock   | 0.000013 |
| Sending data                   | 0.000581 |
| end                            | 0.000012 |
| query end                      | 0.000062 |
| closing tables                 | 0.000020 |
| freeing items                  | 0.000013 |
| Waiting for query cache lock   | 0.000003 |
| freeing items                  | 0.000741 |
| Waiting for query cache lock   | 0.000006 |
| freeing items                  | 0.000002 |
| storing result in query cache  | 0.000005 |
| logging slow query             | 0.000003 |
| cleaning up                    | 0.000004 |
+--------------------------------+----------+
26 rows in set (0.49 sec)

可以看到开表、关表等一长串,说明这个查询需要从硬盘查询数据,第二个是

mysql> show profile for query 9;
+--------------------------------+----------+
| Status                         | Duration |
+--------------------------------+----------+
| starting                       | 0.000023 |
| Waiting for query cache lock   | 0.000004 |
| checking query cache for query | 0.000008 |
| checking privileges on cached  | 0.000003 |
| checking permissions           | 0.000010 |
| sending cached result to clien | 0.000019 |
| logging slow query             | 0.000003 |
| cleaning up                    | 0.000003 |
+--------------------------------+----------+
8 rows in set (0.00 sec)

证明查询被缓存

于 2016-06-30T05:35:22.363 回答
-1

小心这个。

SELECT * FROM orders; 

不是来自缓存(查询 id = qId1)

SELECT * FROM orders; 

来自缓存(查询 id 更改!,查询 id=qId2)

DELETE FROM orders; 

id=qId2 的查询来自缓存,但实际上不是!(表数据更改)。您需要再执行一次查询。但是有必要在执行之前知道查询是否来自缓存。这就是为什么 Yuriy 的方法行不通的原因。

于 2013-02-06T14:45:10.633 回答