サポート #167

<負荷対策>MySQLパラメータチューニング

山本 義治9年以上前に追加. 9年以上前に更新.

ステータス:新規開始日:2015/04/17
優先度:通常期日:
担当者:-進捗 %:

0%

カテゴリ:DB作業時間の記録:-
対象バージョン:-

履歴

#1 山本 義治9年以上前に更新

mysql> SHOW STATUS LIKE 'Qcache%';
+-------------------------+-----------+
| Variable_name           | Value     |
+-------------------------+-----------+
| Qcache_free_blocks      | 608       | 
| Qcache_free_memory      | 2145888   | 
| Qcache_hits             | 100341061 | 
| Qcache_inserts          | 40170796  | 
| Qcache_lowmem_prunes    | 20994267  | 
| Qcache_not_cached       | 978548    | 
| Qcache_queries_in_cache | 3845      | 
| Qcache_total_blocks     | 9049      | 
+-------------------------+-----------+
8 rows in set (0.00 sec)

mysql> show variables like '%query_cache%';
+------------------------------+----------+
| Variable_name                | Value    |
+------------------------------+----------+
| have_query_cache             | YES      | 
| query_cache_limit            | 1048576  | 
| query_cache_min_res_unit     | 4096     | 
| query_cache_size             | 16777216 | 
| query_cache_type             | ON       | 
| query_cache_wlock_invalidate | OFF      | 
+------------------------------+----------+
6 rows in set (0.00 sec)

mysql> set GLOBAL query_cache_type = OFF;
mysql> set GLOBAL query_cache_size = 0;


他の形式にエクスポート: Atom PDF