1Z0-873 · Question #81
Which of the following are true regarding the key buffer cache?
The correct answer is A. The key buffer is used for caching index blocks for MyISAM tables. C. Setting the buffer to a larger size will generally increase performance. The server uses several buffers (caches) to hold information in memory for the purpose of avoiding disk access when possible. A key buffer holds index blocks for MyISAM tables. By caching index blocks in memory, the server often can avoid reading index contents repeatedly from…
Question
Which of the following are true regarding the key buffer cache?
Options
- AThe key buffer is used for caching index blocks for MyISAM tables.
- BThe key buffer is used for caching index blocks for all MySQL tables.
- CSetting the buffer to a larger size will generally increase performance.
- DSetting the buffer to a larger size will generally decrease performance.
How the community answered
(19 responses)- A74% (14)
- B11% (2)
- D16% (3)
Explanation
The server uses several buffers (caches) to hold information in memory for the purpose of avoiding disk access when possible. A key buffer holds index blocks for MyISAM tables. By caching index blocks in memory, the server often can avoid reading index contents repeatedly from disk for index-based retrievals and other index-related operations such as sorts. The key cache improves performance by reducing the need to read index blocks from disk each time they are accessed.
Topics
Community Discussion
No community discussion yet for this question.