I\'m trying to tweak my MySQL server to fit my needs... and I have a basic question: What is the key buffer?
Through try and error I\'ve found that a bigger key buff
The key buffer is MyISAM specific, a structure for index blocks that contains a number of block buffers where the most-used index blocks are placed. It's mean for minimizing disk I/O, because memory is still faster than hard drives [currently]. The MyISAM key buffer is described in more detail in the documentation.
Size depends on amount of indexes, data size and workload.
For more info, see this article on MySQL tuning.