我试图通过使用 SET VARIABLE 来设置它,但它说 have_query_cache 是只读的
mysql>SHOW VARIABLES LIKE 'have_query_cache';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| have_query_cache | YES |
+------------------+-------+
我试图通过使用 SET VARIABLE 来设置它,但它说 have_query_cache 是只读的
mysql>SHOW VARIABLES LIKE 'have_query_cache';
+------------------+-------+
| Variable_name | Value |
+------------------+-------+
| have_query_cache | YES |
+------------------+-------+
对于受支持的 MySQL 版本(小于 8.0 左右),您可以在服务器配置中使用例如变量query_cache_size
和query_cache_type
.
该have_query_cache
变量仅通知您当前是否启用了缓存。