0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Aurora MySQL5.7】クエリキャッシュを無効化する

Posted at

クエリの速度調査などで、キャッシュを無効化する必要がある方に向けて

1つ目の方法

  1. AWSマネジメントコンソール > RDS > クエリキャッシュを無効化したいインスタンスを選択
  2. 設定 > DBインスタンスパラメータグループのリンクを押下
  3. query_cache_type0に設定

上記の手順で、クエリのキャッシュが行われなくなる。

query_cache_typeは適用タイプがstaticのため、インスタンスの再起動が必要となる
(適用タイプがdynamicの場合、インスタンスの再起動は不要)

2つ目の方法

  1. AWSマネジメントコンソール > RDS > クエリキャッシュを無効化したいインスタンスを選択
  2. 設定 > DBインスタンスパラメータグループのリンクを押下
  3. query_cache_type1に設定

この状態で、以下のようにSELECTの後にSQL_NO_CACHEを付与することで、クエリのキャッシュが行われなくなる。

SELECT SQL_NO_CACHE * FROM テーブル名;

参考文献

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?