spelling: efficiency

This commit is contained in:
Josh Soref 2018-02-18 04:44:13 +00:00
parent 89027cebe1
commit d714eb9a57
2 changed files with 6 additions and 6 deletions

View file

@ -179,7 +179,7 @@
* Query Cache Buffers * Query Cache Buffers
* Query Cache DISABLED, ALL REQUEST or ON DEMAND * Query Cache DISABLED, ALL REQUEST or ON DEMAND
* Query Cache Size * Query Cache Size
* Query cache hit ratio (cache efficienty) * Query cache hit ratio (cache efficiency)
## MySQLTuner memory checks ## MySQLTuner memory checks
@ -213,9 +213,9 @@
* If more than 20% of InnoDB buffer pool is not used, MySQLTuner raise an alert. * If more than 20% of InnoDB buffer pool is not used, MySQLTuner raise an alert.
* InnoDB Buffer Pool Log Size * InnoDB Buffer Pool Log Size
* InnoDB total log file size should be 25% of innodb_buffer_pool_size * InnoDB total log file size should be 25% of innodb_buffer_pool_size
* InnoDB Read effiency * InnoDB Read efficiency
* Ratio of read without locks * Ratio of read without locks
* InnoDB Write effiency * InnoDB Write efficiency
* Ratio of write without locks * Ratio of write without locks
* InnoDB Log Waits * InnoDB Log Waits
* Checks that no lock is used on Innodb Log. * Checks that no lock is used on Innodb Log.

View file

@ -2574,7 +2574,7 @@ sub calculations {
$myvar{'innodb_buffer_pool_size'} ); $myvar{'innodb_buffer_pool_size'} );
} }
# InnoDB Buffer pool read cache effiency # InnoDB Buffer pool read cache efficiency
( (
$mystat{'Innodb_buffer_pool_read_requests'}, $mystat{'Innodb_buffer_pool_read_requests'},
$mystat{'Innodb_buffer_pool_reads'} $mystat{'Innodb_buffer_pool_reads'}
@ -2594,7 +2594,7 @@ sub calculations {
debugprint "Innodb_buffer_pool_read_requests: " debugprint "Innodb_buffer_pool_read_requests: "
. $mystat{'Innodb_buffer_pool_read_requests'} . ""; . $mystat{'Innodb_buffer_pool_read_requests'} . "";
# InnoDB log write cache effiency # InnoDB log write cache efficiency
( $mystat{'Innodb_log_write_requests'}, $mystat{'Innodb_log_writes'} ) = ( $mystat{'Innodb_log_write_requests'}, $mystat{'Innodb_log_writes'} ) =
( 1, 1 ) ( 1, 1 )
unless defined $mystat{'Innodb_log_writes'}; unless defined $mystat{'Innodb_log_writes'};
@ -5565,7 +5565,7 @@ sub mysql_innodb {
} }
} }
# InnoDB Read efficency # InnoDB Read efficiency
if ( defined $mycalc{'pct_read_efficiency'} if ( defined $mycalc{'pct_read_efficiency'}
&& $mycalc{'pct_read_efficiency'} < 90 ) && $mycalc{'pct_read_efficiency'} < 90 )
{ {