We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The RSA keys generated for the defaultServer global variable have a dramatically negative impact on any consumers of the server package.
server
go-mysql/server/server_conf.go
Line 11 in 639eccd
This can be measured using GODEBUG='inittrace=1' on any programs that imports github.com/go-mysql-org/go-mysql/server.
GODEBUG='inittrace=1'
github.com/go-mysql-org/go-mysql/server
From a M2:
212 ms github.com/go-mysql-org/go-mysql/server
From a t3.xlarge:
537 ms github.com/go-mysql-org/go-mysql/server
The text was updated successfully, but these errors were encountered:
I think we can use sync.Once to lazily create the defaultServer. Welcome to contribute
defaultServer
Sorry, something went wrong.
@rosstimothy could you check #1021 ?
Successfully merging a pull request may close this issue.
The RSA keys generated for the defaultServer global variable have a dramatically negative impact on any consumers of the
server
package.go-mysql/server/server_conf.go
Line 11 in 639eccd
This can be measured using
GODEBUG='inittrace=1'
on any programs that importsgithub.com/go-mysql-org/go-mysql/server
.From a M2:
212 ms github.com/go-mysql-org/go-mysql/server
From a t3.xlarge:
537 ms github.com/go-mysql-org/go-mysql/server
The text was updated successfully, but these errors were encountered: