Home » MYSQL » MySQL Optimization » Question
  1. Which table option for MyISAM tables reduces index flushing?
    1. KEY_WRITE_DELAY
    2. WRITE_KEY_DELAY
    3. DELAY_KEY_WRITE
    4. DELAY_WRITE_KEY
    5. None of these
Correct Option: C

For MyISAM tables a strategy for reducing index flushing is to use the DELAY_KEY_WRITE table option. With this option the data rows are written to the data file immediately.



Your comments will be displayed only after manual approval.