サポート #59
パフォーマンスチューニング
ステータス: | 新規 | 開始日: | 2014/04/16 | |
---|---|---|---|---|
優先度: | 通常 | 期日: | ||
担当者: | - | 進捗 %: | 0% | |
カテゴリ: | - | 作業時間の記録: | - | |
対象バージョン: | - |
履歴
#1 山本 義治 がほぼ11年前に更新
mysqlクエリキャッシュ実装 /etc/my.cnf [mysqld] query_cache_size=32M mysql> show variables like 'query%'; +------------------------------+----------+ | Variable_name | Value | +------------------------------+----------+ | query_alloc_block_size | 8192 | | query_cache_limit | 1048576 | | query_cache_min_res_unit | 4096 | | query_cache_size | 33554432 | | query_cache_type | ON | | query_cache_wlock_invalidate | OFF | | query_prealloc_size | 8192 | +------------------------------+----------+ 7 rows in set (0.00 sec) mysql> show status like 'Qcach%'; +-------------------------+----------+ | Variable_name | Value | +-------------------------+----------+ | Qcache_free_blocks | 166 | | Qcache_free_memory | 32865760 | | Qcache_hits | 1691 | | Qcache_inserts | 8043 | | Qcache_lowmem_prunes | 0 | | Qcache_not_cached | 625 | | Qcache_queries_in_cache | 446 | | Qcache_total_blocks | 1075 | +-------------------------+----------+ 8 rows in set (0.00 sec) キャッシュヒット率の計算式:Qcache_hits / (Qcache_hits + Qcache_inserts + Qcache_not_cached) * 100 キャッシュヒット率は 16.32%です。