skip to Main Content

What is MySQL "index_block_length"?

MySQL official documentation 8.8.5 Estimating Query Performance offers the way to count disk seeks: log(row_count) / log(index_block_length / 3 * 2 / (index_length + data_pointer_length)) + 1 In MySQL, an index block is usually 1,024 bytes and the data pointer…

VIEW QUESTION
Back To Top
Search