For Each Mysql Query how many Disk Read Operations would be performed , whether it will depend on the No of Rows in the Table . I would like to know the No of Operations on a Disk for a mysql query.
Can any one please shed light on this
For Each Mysql Query how many Disk Read Operations would be performed , whether
Share
For INNODB table you can track number of read blocks
look for the variable “Key_reads”.
thanks to @ajreal