程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> MySQL Open_Table的合理配置

MySQL Open_Table的合理配置

編輯:關於MYSQL數據庫

MySQL  Opened_tables表示打開過的表數量,下文就將教您如何合理配置MySQL Open_Table的值,希望對您學習MySQL數據庫能有所幫助。

MySQL Open_Table情況:

  1. MySQL> show global status like 'open%tables%';  
  2. +---------------+-------+  
  3. | Variable_name | Value |  
  4. +---------------+-------+  
  5. | Open_tables | 919 |  
  6. | Opened_tables | 1951 |  
  7. +---------------+-------+ 

MySQL Open_tables表示打開表的數量,如果MySQL Opened_tables數量過大,說明配置中table_cache(5.1.3之後這個值叫做table_open_cache)值可能太小,我們查詢一下服務器table_cache值:

  1. MySQL> show variables like 'table_cache';  
  2. +---------------+-------+  
  3. | Variable_name | Value |  
  4. +---------------+-------+  
  5. | table_cache | 2048 |  
  6. +---------------+-------+ 

MySQL Open_Table比較合適的值為:

  1. Open_tables / Opened_tables * 100% >= 85%  
  2. Open_tables / table_cache * 100%  
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved