昨天 講到如何確定order by會使用到索引?
今天 我們繼續來談到 直接優化 MySQL Server本身
1. 使用show variables查看伺服器靜態參數的數值
或在command line下 mysqladmin -uroot variables
2. 使用 show status查看動態運行狀態訊息
3. 在command line下 mysql--verbose --help 可以看到更詳細的參數
重要的參數有 key_buffer
註解中寫到the size of the buffer used for index blocks for MyISAM
也就是用來設定所索引區塊的大小
重要的參數還有 table_cache
innodb_buffer_pool_size
innodb_flush_log_at_trx_commit
等等 如果有用到的話