-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
skip-name-resolve suggested to OFF rather than ON #693
- Loading branch information
1 parent
f585e6a
commit badfadb
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env perl | ||
# mysqltuner.pl - Version 2.2.2 | ||
# mysqltuner.pl - Version 2.2.3 | ||
# High Performance MySQL Tuning Script | ||
# Copyright (C) 2006-2023 Major Hayden - [email protected] | ||
# Copyright (C) 2015-2023 Jean-Marie Renouard - [email protected] | ||
|
@@ -57,7 +57,7 @@ package main; | |
#use Env; | ||
|
||
# Set up a few variables for use in the script | ||
my $tunerversion = "2.2.2"; | ||
my $tunerversion = "2.2.3"; | ||
my ( @adjvars, @generalrec ); | ||
|
||
# Set defaults | ||
|
@@ -3400,9 +3400,9 @@ sub mysql_stats { | |
badprint | ||
"Name resolution is active: a reverse name resolution is made for each new connection which can reduce performance"; | ||
push( @generalrec, | ||
"Configure your accounts with ip or subnets only, then update your configuration with skip-name-resolve=OFF" | ||
"Configure your accounts with ip or subnets only, then update your configuration with skip-name-resolve=ON" | ||
); | ||
push( @adjvars, "skip-name-resolve=OFF" ); | ||
push( @adjvars, "skip-name-resolve=ON" ); | ||
} | ||
|
||
# Query cache | ||
|
@@ -7264,7 +7264,7 @@ sub which { | |
=head1 NAME | ||
MySQLTuner 2.2.2 - MySQL High Performance Tuning Script | ||
MySQLTuner 2.2.3 - MySQL High Performance Tuning Script | ||
=head1 IMPORTANT USAGE GUIDELINES | ||
|