From d714eb9a57c2689a450dd7c765dfb64443ed03cb Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 18 Feb 2018 04:44:13 +0000 Subject: [PATCH] spelling: efficiency --- INTERNALS.md | 6 +++--- mysqltuner.pl | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/INTERNALS.md b/INTERNALS.md index f2965d5..5f2bcb1 100644 --- a/INTERNALS.md +++ b/INTERNALS.md @@ -179,7 +179,7 @@ * Query Cache Buffers * Query Cache DISABLED, ALL REQUEST or ON DEMAND * Query Cache Size - * Query cache hit ratio (cache efficienty) + * Query cache hit ratio (cache efficiency) ## MySQLTuner memory checks @@ -213,9 +213,9 @@ * If more than 20% of InnoDB buffer pool is not used, MySQLTuner raise an alert. * InnoDB Buffer Pool Log 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 -* InnoDB Write effiency +* InnoDB Write efficiency * Ratio of write without locks * InnoDB Log Waits * Checks that no lock is used on Innodb Log. diff --git a/mysqltuner.pl b/mysqltuner.pl index b337ba4..4f8d5df 100755 --- a/mysqltuner.pl +++ b/mysqltuner.pl @@ -2574,7 +2574,7 @@ sub calculations { $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_reads'} @@ -2594,7 +2594,7 @@ sub calculations { debugprint "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'} ) = ( 1, 1 ) 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'} && $mycalc{'pct_read_efficiency'} < 90 ) {