https://dev.mysql.com/thread-pool-operation.html
The thread pool consists of a number of thread groups, each of which manages a set of client connections. As connections are established, the thread pool assigns them to thread groups in round-robin fashion. The thread pool separates connections ...
https://dev.mysql.com/c-api-auto-reconnect.html
The MySQL client library can perform an automatic reconnection to the server if it finds that the connection is down when you attempt to send a statement to the server to be executed. If auto-reconnect is enabled, the library tries once to ...
https://dev.mysql.com/creating-accounts.html
At the command line, connect to the server as the MySQL root user, supplying the appropriate password at the password prompt: shell> mysql -u root -p Enter password: (enter root password here) After connecting to the server, you can add new accounts. The 'finley'@'localhost' account can be used only when connecting from the local ... To manage MySQL accounts, use the SQL ...
https://dev.mysql.com/faqs-cjk.html
Usually it is necessary to change only the client and connection and results settings. Why does my GUI front end or browser display CJK characters incorrectly in my application using Access, PHP, or another API? Obtain a direct connection to the ...
https://dev.mysql.com/information-functions.html
mysql> SELECT COLLATION('abc'); -> 'utf8_general_ci' mysql> SELECT COLLATION(_utf8mb4'abc'); -> 'utf8mb4_0900_ai_ci' mysql> SELECT COLLATION(_latin1'abc'); -> 'latin1_swedish_ci' CONNECTION_ID() Returns the connection ID (thread ID) for the ...It ...
https://dev.mysql.com/keyring-hashicorp-plugin.html
Plugin-specific information includes preparation of the certificate and key files needed for connecting to HashiCorp Vault, as well as configuring Vault itself. Certificate and Key Preparation HashiCorp Vault Setup keyring_hashicorp Configuration ...
https://dev.mysql.com/mysql-cluster-params-other.html
For detailed descriptions and additional information about individual parameters, see Section 22.3.3.10, “NDB Cluster TCP/IP Connections”, or Section 22.3.3.12, “NDB Cluster Shared-Memory Connections”, as appropriate. The listings in this ...
https://dev.mysql.com/mysql-config-editor.html
The file can be read later by MySQL client programs to obtain authentication credentials for connecting to MySQL Server. Think of a login path option group as a set of options that specify which MySQL server to connect to and which account to ...
https://dev.mysql.com/mysql-innodb-cluster-sandbox-deployment.html
The argument passed to deploySandboxInstance() is the TCP port number where the MySQL Server instance listens for connections. Issue: mysql-js> dba.deploySandboxInstance(3320) mysql-js> dba.deploySandboxInstance(3330) The next step is to create the ... This section explains how to set up a sandbox InnoDB cluster ...
https://dev.mysql.com/performance-schema-status-variables.html
Performance_schema_session_connect_attrs_longest_seen In addition to the connection attribute size-limit check performed by the Performance Schema against the value of the performance_schema_session_connect_attrs_size system variable, the server ...