Replies: 1 comment
-
MySql.Data performs a lot of unnecessary (IMO) reads from the MySQL Server when you open a connection, e.g., MySqlConnector has been highly optimized for performance (see https://mysqlconnector.net/#performance) and tries to reduce network I/O to a minimum. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Changing from MySql.Data.MySqlClient to MySqlConnector cut the network out total on the box with our MySql server in half.
Does anyone have some intuition that they could share for how this could be possible?
Beta Was this translation helpful? Give feedback.
All reactions