当前位置: 首页 > news >正文

MySQL 状态【中文对照表】

SHOW STATUS 是一个非常有用的 MySQL 命令,它可以帮助我们了解 MySQL 服务器的当前状态,从而更好地管理和优化我们的数据库。

MySQL SHOW STATUS 命令手册

SHOW STATUS 命令概述
在 MySQL 中,SHOW STATUS 命令是一个强大的工具,用于显示 MySQL 服务器当前性能和状态的信息。
这个命令会显示每个服务器变量的名字和值,状态变量是只读的。

SHOW STATUS 命令的使用
你可以在 MySQL 客户端下运行 SHOW STATUS 或者在命令行运用 mysqladmin extended-status 来查看这些变量。
如果使用 SQL 命令,可以使用 LIKE 或者 WHERE 来限制结果 , LIKE 可以对变量名做标准模式匹配。

SHOW STATUS 中混杂了全局和会话变量,其中许多变量有双重域:既是全局变量,也是会话变量,有相同的名字。
如果只需要看全局变量,需要改为 SHOW GLOBAL STATUS 查看。

注意事项
在使用 SHOW STATUS 命令时,需要注意的是,这个命令提供的是服务器的状态信息,而不是用户的个人信息。
因此,它不能用来获取或修改用户的个人信息。

此外,由于 SHOW STATUS 命令提供的信息可能会随着 MySQL 服务器的运行而变化,所以在使用这个命令时,最好能够定期地运行它,以便获取最新的服务器状态信息。

查看mysql服务器的当前状态

1:进入mysql交互模式
2:执行命令:mysql status;
1: 内容如下:附带中文对照
mysql> show status;
| Variable_name                                         | Value| 中文解释 |
|-------------------------------------------------------|------|----------|
| Aborted_clients                                       | 0    | 中断的客户端数量 |
| Aborted_connects                                      | 1    | 中断的连接数量 |
| Acl_cache_items_count                                 | 0    | 访问控制列表缓存项数 |
| Binlog_cache_disk_use                                 | 0    | 使用二进制日志缓存的事务数量,这些事务因为缓存不足而使用临时文件 |
| Binlog_cache_use                                      | 0    | 使用二进制日志缓存的事务数量 |
| Binlog_stmt_cache_disk_use                            | 0    | 使用二进制日志语句缓存的事务数量,这些事务因为缓存不足而使用临时文件 |
| Binlog_stmt_cache_use                                 | 0    | 使用二进制日志语句缓存的事务数量 |
| Bytes_received                                        | 309  | 接收到的字节数 |
| Bytes_sent                                            | 463  | 发送的字节数 |
| Caching_sha2_password_rsa_public_key                  | -----BEGIN PUBLIC KEY-----| 用于SHA-2密码认证的RSA公钥 |
| Com_admin_commands                                    | 0    | 执行的管理员命令数量 |
| Com_assign_to_keycache                                | 0    | 分配给键缓存的操作数量 |
| Com_alter_db                                          | 0    | 执行的ALTER DATABASE命令数量 |
| Com_alter_event                                       | 0    | 执行的ALTER EVENT命令数量 |
| Com_alter_function                                    | 0    | 执行的ALTER FUNCTION命令数量 |
| Com_alter_instance                                    | 0    | 执行的ALTER INSTANCE命令数量 |
| Com_alter_procedure                                   | 0    | 执行的ALTER PROCEDURE命令数量 |
| Com_alter_resource_group                              | 0    | 执行的ALTER RESOURCE GROUP命令数量 |
| Com_alter_server                                      | 0    | 执行的ALTER SERVER命令数量 |
| Com_alter_table                                       | 0    | 执行的ALTER TABLE命令数量 |
| Com_alter_tablespace                                  | 0    | 执行的ALTER TABLESPACE命令数量 |
| Com_alter_user                                        | 0    | 执行的ALTER USER命令数量 |
| Com_alter_user_default_role                           | 0    | 执行的ALTER USER DEFAULT ROLE命令数量 |
| Com_analyze                                           | 0    | 执行的ANALYZE TABLE命令数量 |
| Com_begin                                             | 0    | 执行的BEGIN命令数量 |
| Com_binlog                                            | 0    | 执行的BINLOG命令数量 |
| Com_call_procedure                                    | 0    | 执行的CALL命令数量 |
| Com_change_db                                         | 0    | 执行的CHANGE DB命令数量 |
| Com_change_master                                     | 0    | 执行的CHANGE MASTER命令数量 |
| Com_change_repl_filter                                | 0    | 执行的CHANGE REPLICATION FILTER命令数量 |
| Com_change_replication_source                         | 0    | 执行的CHANGE REPLICATION SOURCE命令数量 |
| Com_check                                             | 0    | 执行的CHECK命令数量 |
| Com_checksum                                          | 0    | 执行的CHECKSUM命令数量 |
| Com_clone                                             | 0     | 执行的CLONE命令数量 |
| Com_commit                                            | 0     | 执行的COMMIT命令数量 |
| Com_create_db                                         | 0     | 执行的CREATE DATABASE命令数量 |
| Com_create_event                                      | 0     | 执行的CREATE EVENT命令数量 |
| Com_create_function                                   | 0     | 执行的CREATE FUNCTION命令数量 |
| Com_create_index                                      | 0     | 执行的CREATE INDEX命令数量 |
| Com_create_procedure                                  | 0     | 执行的CREATE PROCEDURE命令数量 |
| Com_create_role                                       | 0     | 执行的CREATE ROLE命令数量 |
| Com_create_server                                     | 0     | 执行的CREATE SERVER命令数量 |
| Com_create_table                                      | 0     | 执行的CREATE TABLE命令数量 |
| Com_create_resource_group                             | 0     | 执行的CREATE RESOURCE GROUP命令数量 |
| Com_create_trigger                                    | 0     | 执行的CREATE TRIGGER命令数量 |
| Com_create_udf                                        | 0     | 执行的CREATE FUNCTION UDF命令数量 |
| Com_create_user                                       | 0     | 执行的CREATE USER命令数量 |
| Com_create_view                                       | 0     | 执行的CREATE VIEW命令数量 |
| Com_create_spatial_reference_system                   | 0     | 执行的CREATE SPATIAL REFERENCE SYSTEM命令数量 |
| Com_dealloc_sql                                       | 0     | 执行的DEALLOCATE PREPARE命令数量 |
| Com_delete                                            | 0     | 执行的DELETE命令数量 |
| Com_delete_multi                                      | 0     | 执行的多表DELETE命令数量 |
| Com_do                                                | 0     | 执行的DO命令数量 |
| Com_drop_db                                           | 0     | 执行的DROP DATABASE命令数量 |
| Com_drop_event                                        | 0     | 执行的DROP EVENT命令数量 |
| Com_drop_function                                     | 0     | 执行的DROP FUNCTION命令数量 |
| Com_drop_index                                        | 0     | 执行的DROP INDEX命令数量 |
| Com_drop_procedure                                    | 0     | 执行的DROP PROCEDURE命令数量 |
| Com_drop_resource_group                               | 0     | 执行的DROP RESOURCE GROUP命令数量 |
| Com_drop_role                                         | 0     | 执行的DROP ROLE命令数量 |
| Com_drop_server                                       | 0     | 执行的DROP SERVER命令数量 |
| Com_drop_spatial_reference_system                     | 0     | 执行的DROP SPATIAL REFERENCE SYSTEM命令数量 |
| Com_drop_table                                        | 0     | 执行的DROP TABLE命令数量 |
| Com_drop_trigger                                      | 0     | 执行的DROP TRIGGER命令数量 |
| Com_drop_user                                         | 0     | 执行的DROP USER命令数量 |
| Com_drop_view                                         | 0     | 执行的DROP VIEW命令数量 |
| Com_empty_query                                       | 0     | 执行的空查询命令数量 |
| Com_execute_sql                                       | 0     | 执行的EXECUTE命令数量 |
| Com_explain_other                                     | 0     | 执行的EXPLAIN命令数量 |
| Com_flush                                             | 0     | 执行的FLUSH命令数量 |
| Com_get_diagnostics                                   | 0     | 执行的GET DIAGNOSTICS命令数量 |
| Com_grant                                             | 0     | 执行的GRANT命令数量 |
| Com_grant_roles                                       | 0     | 执行的GRANT ROLES命令数量 |
| Com_ha_close                                          | 0     | 执行的HA CLOSE命令数量 |
| Com_ha_open                                           | 0     | 执行的HA OPEN命令数量 |
| Com_ha_read                                           | 0     | 执行的HA READ命令数量 |
| Com_help                                              | 0     | 执行的HELP命令数量 |
| Com_import                                            | 0     | 执行的IMPORT命令数量 |
| Com_insert                                            | 0     | 执行的INSERT命令数量 |
| Com_insert_select                                     | 0     | 执行的INSERT SELECT命令数量 |
| Com_install_component                                 | 0     | 执行的INSTALL COMPONENT命令数量 |
| Com_install_plugin                                    | 0     | 执行的INSTALL PLUGIN命令数量 |
| Com_kill                                              | 0     | 执行的KILL命令数量 |
| Com_load                                              | 0     | 执行的LOAD命令数量 |
| Com_lock_instance                                     | 0     | 执行的LOCK INSTANCE命令数量 |
| Com_lock_tables                                       | 0     | 执行的LOCK TABLES命令数量 |
| Com_optimize                                          | 0     | 执行的OPTIMIZE命令数量 |
| Com_preload_keys                                      | 0     | 执行的PRELOAD KEYS命令数量 |
| Com_prepare_sql                                       | 0     | 执行的PREPARE命令数量 |
| Com_purge                                             | 0     | 执行的PURGE命令数量 |
| Com_purge_before_date                                 | 0     | 执行的PURGE BEFORE命令数量 |
| Com_release_savepoint                                 | 0     | 执行的RELEASE SAVEPOINT命令数量 |
| Com_rename_table                                      | 0     | 执行的RENAME TABLE命令数量 |
| Com_rename_user                                       | 0     | 执行的RENAME USER命令数量 |
| Com_repair                                            | 0     | 执行的REPAIR命令数量 |
| Com_replace                                           | 0     | 执行的REPLACE命令数量 |
| Com_replace_select                                    | 0     | 执行的REPLACE SELECT命令数量 |
| Com_reset                                             | 0     | 执行的RESET命令数量 |
| Com_resignal                                          | 0     | 执行的RESIGNAL命令数量 |
| Com_restart                                           | 0     | 执行的RESTART命令数量 |
| Com_revoke                                            | 0     | 执行的REVOKE命令数量 |
| Com_revoke_all                                        | 0     | 执行的REVOKE ALL命令数量 |
| Com_revoke_roles                                      | 0     | 执行的REVOKE ROLES命令数量 |
| Com_rollback                                          | 0     | 执行的ROLLBACK命令数量 |
| Com_rollback_to_savepoint                             | 0     | 执行的ROLLBACK TO SAVEPOINT命令数量 |
| Com_savepoint                                         | 0     | 执行的SAVEPOINT命令数量 |
| Com_select                                            | 1     | 执行的SELECT命令数量 |
| Com_set_option                                        | 0     | 执行的SET OPTION命令数量 |
| Com_set_password                                      | 0     | 执行的SET PASSWORD命令数量 |
| Com_set_resource_group                                | 0     | 执行的SET RESOURCE GROUP命令数量 |
| Com_set_role                                          | 0     | 执行的SET ROLE命令数量 |
| Com_signal                                            | 0     | 执行的SIGNAL命令数量 |
| Com_show_binlog_events                                | 0     | 执行的SHOW BINLOG EVENTS命令数量 |
| Com_show_binlogs                                      | 0     | 执行的SHOW BINLOGS命令数量 |
| Com_show_charsets                                     | 0     | 执行的SHOW CHARSETS命令数量 |
| Com_show_collations                                   | 0     | 执行的SHOW COLLATIONS命令数量 |
| Com_show_create_db                                    | 0     | 执行的SHOW CREATE DATABASE命令数量 |
| Com_show_create_event                                 | 0     | 执行的SHOW CREATE EVENT命令数量 |
| Com_show_create_func                                  | 0     | 执行的SHOW CREATE FUNCTION命令数量 |
| Com_show_create_proc                                  | 0     | 执行的SHOW CREATE PROCEDURE命令数量 |
| Com_show_create_table                                 | 0     | 执行的SHOW CREATE TABLE命令数量 |
| Com_show_create_trigger                               | 0     | 执行的SHOW CREATE TRIGGER命令数量 |
| Com_show_databases                                    | 2     | 执行的SHOW DATABASES命令数量 |
| Com_show_engine_logs                                  | 0     | 执行的SHOW ENGINE LOGS命令数量 |
| Com_show_engine_mutex                                 | 0     | 执行的SHOW ENGINE MUTEX命令数量 |
| Com_show_engine_status                                | 0     | 执行的SHOW ENGINE STATUS命令数量 |
| Com_show_events                                       | 0     | 执行的SHOW EVENTS命令数量 |
| Com_show_errors                                       | 0     | 执行的SHOW ERRORS命令数量 |
| Com_show_fields                                       | 0     | 执行的SHOW FIELDS命令数量 |
| Com_show_function_code                                | 0     | 执行的SHOW FUNCTION CODE命令数量 |
| Com_show_function_status                              | 0     | 执行的SHOW FUNCTION STATUS命令数量 |
| Com_show_grants                                       | 0     | 执行的SHOW GRANTS命令数量 |
| Com_show_keys                                         | 0     | 执行的SHOW KEYS命令数量 |
| Com_show_master_status                                | 0     | 执行的SHOW MASTER STATUS命令数量 |
| Com_show_open_tables                                  | 0     | 执行的SHOW OPEN TABLES命令数量 |
| Com_show_plugins                                      | 0     | 执行的SHOW PLUGINS命令数量 |
| Com_show_privileges                                   | 0     | 执行的SHOW PRIVILEGES命令数量 |
| Com_show_procedure_code                               | 0     | 执行的SHOW PROCEDURE CODE命令数量 |
| Com_show_procedure_status                             | 0     | 执行的SHOW PROCEDURE STATUS命令数量 |
| Com_show_processlist                                  | 0     | 执行的SHOW PROCESSLIST命令数量 |
| Com_show_profile                                      | 0     | 执行的SHOW PROFILE命令数量 |
| Com_show_profiles                                     | 0     | 执行的SHOW PROFILES命令数量 |
| Com_show_relaylog_events                              | 0     | 执行的SHOW RELAYLOG EVENTS命令数量 |
| Com_show_replicas                                     | 0     | 执行的SHOW REPLICAS命令数量 |
| Com_show_slave_hosts                                  | 0     | 执行的SHOW SLAVE HOSTS命令数量 |
| Com_show_replica_status                               | 0     | 执行的SHOW REPLICA STATUS命令数量 |
| Com_show_slave_status                                 | 0     | 执行的SHOW SLAVE STATUS命令数量 |
| Com_show_status                                       | 1     | 执行的SHOW STATUS命令数量 |
| Com_show_storage_engines                              | 0     | 执行的SHOW STORAGE ENGINES命令数量 |
| Com_show_table_status                                 | 0     | 执行的SHOW TABLE STATUS命令数量 |
| Com_show_tables                                       | 0     | 执行的SHOW TABLES命令数量 |
| Com_show_triggers                                     | 0     | 执行的SHOW TRIGGERS命令数量 |
| Com_show_variables                                    | 0     | 执行的SHOW VARIABLES命令数量 |
| Com_show_warnings                                     | 0     | 执行的SHOW WARNINGS命令数量 |
| Com_show_create_user                                  | 0     | 执行的SHOW CREATE USER命令数量 |
| Com_shutdown                                          | 0     | 执行的SHUTDOWN命令数量 |
| Com_replica_start                                     | 0     | 执行的START REPLICA命令数量 |
| Com_slave_start                                       | 0     | 执行的START SLAVE命令数量 |
| Com_replica_stop                                      | 0     | 执行的STOP REPLICA命令数量 |
| Com_slave_stop                                        | 0     | 执行的STOP SLAVE命令数量 |
| Com_group_replication_start                           | 0     | 执行的START GROUP_REPLICATION命令数量 |
| Com_group_replication_stop                            | 0     | 执行的STOP GROUP_REPLICATION命令数量 |
| Com_stmt_execute                                      | 0     | 执行的EXECUTE命令数量 |
| Com_stmt_close                                        | 0     | 执行的CLOSE命令数量 |
| Com_stmt_fetch                                        | 0     | 执行的FETCH命令数量 |
| Com_stmt_prepare                                      | 0     | 执行的PREPARE命令数量 |
| Com_stmt_reset                                        | 0     | 执行的RESET命令数量 |
| Com_stmt_send_long_data                               | 0     | 执行的SEND LONG DATA命令数量 |
| Com_truncate                                          | 0     | 执行的TRUNCATE命令数量 |
| Com_uninstall_component                               | 0     | 执行的UNINSTALL COMPONENT命令数量 |
| Com_uninstall_plugin                                  | 0     | 执行的UNINSTALL PLUGIN命令数量 |
| Com_unlock_instance                                   | 0     | 执行的UNLOCK INSTANCE命令数量 |
| Com_unlock_tables                                     | 0     | 执行的UNLOCK TABLES命令数量 |
| Com_update                                            | 0     | 执行的UPDATE命令数量 |
| Com_update_multi                                      | 0     | 执行的多表UPDATE命令数量 |
| Com_xa_commit                                         | 0     | 执行的XA COMMIT命令数量 |
| Com_xa_end                                            | 0     | 执行的XA END命令数量 |
| Com_xa_prepare                                        | 0     | 执行的XA PREPARE命令数量 |
| Com_xa_recover                                        | 0     | 执行的XA RECOVER命令数量 |
| Com_xa_rollback                                       | 0     | 执行的XA ROLLBACK命令数量 |
| Com_xa_start                                          | 0     | 执行的XA START命令数量 |
| Com_stmt_reprepare                                    | 0     | 执行的REPREPARE命令数量 |
| Compression                                           | OFF   | 是否启用压缩 |
| Compression_algorithm                                 |       | 当前使用的压缩算法 |
| Compression_level                                     | 0     | 当前的压缩级别 |
| Connection_errors_accept                              | 0     | 接受连接时发生错误的次数 |
| Connection_errors_internal                            | 0     | 内部连接错误的次数 |
| Connection_errors_max_connections                     | 0     | 超过最大连接数导致的连接错误次数 |
| Connection_errors_peer_address                        | 0     | 对等地址错误的连接次数 |
| Connection_errors_select                              | 0     | select调用错误的连接次数 |
| Connection_errors_tcpwrap                             | 0     | TCP包装错误的连接次数 |
| Connections                                           | 17    | 试图连接到(不一定成功)MySQL服务器的连接数量 |
| Created_tmp_disk_tables                               | 0     | 服务器执行语句时在硬盘上创建的临时表的数量 |
| Created_tmp_files                                     | 5     | mysqld启动后创建的临时文件数 |
| Created_tmp_tables                                    | 0     | 服务器执行语句时在内存中创建的临时表的数量 |
| Current_tls_ca                                        | ca.pem | 当前使用的TLS CA证书 |
| Current_tls_capath                                    |       | 当前使用的TLS CA路径 |
| Current_tls_cert                                      | server-cert.pem | 当前使用的TLS证书 |
| Current_tls_cipher                                    |       | 当前使用的TLS密码套件 |
| Current_tls_ciphersuites                              |       | 当前使用的TLS密码套件列表 |
| Current_tls_crl                                       |       | 当前使用的TLS CRL |
| Current_tls_crlpath                                   |       | 当前使用的TLS CRL路径 |
| Current_tls_key                                       | server-key.pem | 当前使用的TLS密钥 |
| Current_tls_version                                   | TLSv1.2,TLSv1.3 | 当前使用的TLS版本 |
| Delayed_errors                                        | 0     | 延迟插入线程出错的次数 |
| Delayed_insert_threads                                | 0     | 当前正在运行的延迟插入线程数 |
| Delayed_writes                                        | 0     | 写入的行数(INSERT DELAYED) |
| Deprecated_use_i_s_processlist_count                  | 0     | 使用已弃用的INFORMATION_SCHEMA.PROCESSLIST的次数 |
| Deprecated_use_i_s_processlist_last_timestamp         | 0     | 最后一次使用已弃用的INFORMATION_SCHEMA.PROCESSLIST的时间戳 |
| Error_log_buffered_bytes                              | 1128  | 错误日志缓冲区中的字节数 |
| Error_log_buffered_events                             | 8     | 错误日志缓冲区中的事件数 |
| Error_log_expired_events                              | 0     | 错误日志中过期的事件数 |
| Error_log_latest_write                                | 1716215534735783 | 错误日志中最新写入的事件的时间戳 |
| Flush_commands                                        | 3     | 执行FLUSH命令的次数 |
| Global_connection_memory                              | 0     | 全局连接内存使用量 |
| Handler_commit                                        | 3     | 内部COMMIT语句的请求数 |
| Handler_delete                                        | 0     | 行从表中删除的次数 |
| Handler_discover                                      | 0     | MySQL服务器向NDB集群存储引擎请求表的存储引擎类型的次数 |
| Handler_external_lock                                 | 46    | 外部系统锁定的次数 |
| Handler_mrr_init                                      | 0     | 多范围读取优化被使用的次数 |
| Handler_prepare                                       | 0     | 内部在Handler接口层面准备的次数 |
| Handler_read_first                                    | 4     | 读取索引的第一条记录的次数 |
| Handler_read_key                                      | 21    | 根据键读取一行的请求数 |
| Handler_read_last                                     | 0     | 读取索引的最后一条记录的次数 |
| Handler_read_next                                     | 10    | 按键顺序读取下一行的请求数 |
| Handler_read_prev                                     | 0     | 按键顺序读取上一行的请求数 |
| Handler_read_rnd                                      | 0     | 根据固定位置读取一行的请求数 |
| Handler_read_rnd_next                                 | 10    | 在数据文件中读取下一行的请求数 |
| Handler_rollback                                      | 0     | 请求内部执行ROLLBACK语句的次数 |
| Handler_savepoint                                     | 0     | 请求设置一个保存点的次数 |
| Handler_savepoint_rollback                            | 0     | 请求回滚到保存点的次数 |
| Handler_update                                        | 0     | 在表中更新一行的请求数 |
| Handler_write                                         | 0     | 在表中插入一行的请求数 |
| Innodb_buffer_pool_dump_status                        | Dumping of buffer pool not started | InnoDB缓冲池转储的状态 |
| Innodb_buffer_pool_load_status                        | Buffer pool(s) load completed at 240520 14:32:14 | InnoDB缓冲池加载的状态 |
| Innodb_buffer_pool_resize_status                      |       | InnoDB缓冲池调整大小的状态 |
| Innodb_buffer_pool_resize_status_code                 | 0     | InnoDB缓冲池调整大小的状态码 |
| Innodb_buffer_pool_resize_status_progress             | 0     | InnoDB缓冲池调整大小的进度 |
| Innodb_buffer_pool_pages_data                         | 1309  | 缓冲池中包含数据的页数 |
| Innodb_buffer_pool_bytes_data                         | 21446656 | 缓冲池中包含数据的字节数 |
| Innodb_buffer_pool_pages_dirty                        | 0     | 缓冲池中脏页的数量 |
| Innodb_buffer_pool_bytes_dirty                        | 0     | 缓冲池中脏数据的字节数 |
| Innodb_buffer_pool_pages_flushed                      | 255   | 请求清除的缓冲池页数 |
| Innodb_buffer_pool_pages_free                         | 6864  | 缓冲池中空闲页数 |
| Innodb_buffer_pool_pages_misc                         | 19    | 缓冲池中用于管理目的或锁定由事务或查询占用的页数 |
| Innodb_buffer_pool_pages_total                        | 8192  | 缓冲池总页数 |
| Innodb_buffer_pool_read_ahead_rnd                     | 0     | InnoDB启动的"随机"预读操作的数量 |
| Innodb_buffer_pool_read_ahead                         | 0     | InnoDB启动的预读操作的数量 |
| Innodb_buffer_pool_read_ahead_evicted                 | 0     | 在预读操作后被驱逐出缓冲池的页数 |
| Innodb_buffer_pool_read_requests                      | 63275 | InnoDB已完成的逻辑读请求数 |
| Innodb_buffer_pool_reads                              | 1161  | 不能在InnoDB缓冲池中满足并必须直接从磁盘读取的读操作数 |
| Innodb_buffer_pool_wait_free                          | 0     | 等待页清除的次数 |
| Innodb_buffer_pool_write_requests                     | 2309  | 写入InnoDB缓冲池的请求数 |
| Innodb_data_fsyncs                                    | 199   | fsync()操作数 |
| Innodb_data_pending_fsyncs                            | 0     | 当前挂起的fsync操作数 |
| Innodb_data_pending_reads                             | 0     | 当前挂起的读数 |
| Innodb_data_pending_writes                            | 0     | 当前挂起的写数 |
| Innodb_data_read                                      | 19089920 | 从InnoDB数据文件读取的字节数 |
| Innodb_data_reads                                     | 1181  | 数据读取的总次数 |
| Innodb_data_writes                                    | 408   | 数据写入的总次数 |
| Innodb_data_written                                   | 4332032 | 写入InnoDB数据文件的字节数 |
| Innodb_dblwr_pages_written                            | 110   | 已经写入的双写缓冲的页数 |
| Innodb_dblwr_writes                                   | 30    | 双写操作已经执行的次数 |
| Innodb_redo_log_read_only                             | OFF   | 重做日志是否为只读 |
| Innodb_redo_log_uuid                                  | 4040442583 | 重做日志的UUID |
| Innodb_redo_log_checkpoint_lsn                        | 32189425 | 重做日志的检查点LSN |
| Innodb_redo_log_current_lsn                           | 32189425 | 重做日志的当前LSN |
| Innodb_redo_log_flushed_to_disk_lsn                   | 32189425 | 刷新到磁盘的重做日志的LSN |
| Innodb_redo_log_logical_size                          | 512   | 重做日志的逻辑大小 |
| Innodb_redo_log_physical_size                         | 3276800 | 重做日志的物理大小 |
| Innodb_redo_log_capacity_resized                      | 104857600 | 重做日志的调整后容量 |
| Innodb_redo_log_resize_status                         | OK    | 重做日志调整大小的状态 |
| Innodb_log_waits                                      | 0     | 因必须等待来写入日志而发生的等待次数 |
| Innodb_log_write_requests                             | 1003  | 写入日志的请求数 |
| Innodb_log_writes                                     | 95    | 物理写入日志文件的次数 |
| Innodb_os_log_fsyncs                                  | 77    | fsync()写入日志文件的次数 |
| Innodb_os_log_pending_fsyncs                          | 0     | 等待fsync()处理的日志文件写入数量 |
| Innodb_os_log_pending_writes                          | 0     | 等待写入日志文件的写入数量 |
| Innodb_os_log_written                                 | 117248 | 写入日志文件的字节数 |
| Innodb_page_size                                      | 16384 | InnoDB页面大小(字节) |
| Innodb_pages_created                                  | 152   | 创建的页数 |
| Innodb_pages_read                                     | 1160  | 读取的页数 |
| Innodb_pages_written                                  | 255   | 写入的页数 |
| Innodb_redo_log_enabled                               | ON    | 是否启用了重做日志 |
| Innodb_row_lock_current_waits                         | 0     | 当前等待的行锁数量 |
| Innodb_row_lock_time                                  | 0     | 行锁定的总时间(毫秒) |
| Innodb_row_lock_time_avg                              | 0     | 平均行锁定时间(毫秒) |
| Innodb_row_lock_time_max                              | 0     | 最大行锁定时间(毫秒) |
| Innodb_row_lock_waits                                 | 0     | 行锁定的总等待次数 |
| Innodb_rows_deleted                                   | 0     | 删除的行数 |
| Innodb_rows_inserted                                  | 0     | 插入的行数 |
| Innodb_rows_read                                      | 0     | 读取的行数 |
| Innodb_rows_updated                                   | 0     | 更新的行数 |
| Innodb_system_rows_deleted                            | 8     | 系统表删除的行数 |
| Innodb_system_rows_inserted                           | 47    | 系统表插入的行数 |
| Innodb_system_rows_read                               | 21331 | 系统表读取的行数 |
| Innodb_system_rows_updated                            | 331   | 系统表更新的行数 |
| Innodb_sampled_pages_read                             | 0     | 读取的采样页数 |
| Innodb_sampled_pages_skipped                          | 0     | 跳过的采样页数 |
| Innodb_num_open_files                                 | 15    | 打开的文件数 |
| Innodb_truncated_status_writes                        | 0     | 截断的状态变量写入次数 |
| Innodb_undo_tablespaces_total                         | 2     | 总的撤销表空间数 |
| Innodb_undo_tablespaces_implicit                      | 2     | 隐式撤销表空间数 |
| Innodb_undo_tablespaces_explicit                      | 0     | 显式撤销表空间数 |
| Innodb_undo_tablespaces_active                        | 2     | 活动的撤销表空间数 |
| Key_blocks_not_flushed                                | 0     | 尚未刷新到磁盘的键块数 |
| Key_blocks_unused                                     | 6698  | 未使用的键块数 |
| Key_blocks_used                                       | 0     | 使用的键块数 |
| Key_read_requests                                     | 0     | 请求读取键块的次数 |
| Key_reads                                             | 0     | 实际从磁盘读取键块的次数 |
| Key_write_requests                                    | 0     | 请求写入键块的次数 |
| Key_writes                                            | 0     | 实际写入磁盘的键块数 |
| Last_query_cost                                       | 7.799008 | 上一次查询的成本 |
| Last_query_partial_plans                              | 13    | 上一次查询的部分计划数 |
| Locked_connects                                       | 0     | 锁定的连接数 |
| Max_execution_time_exceeded                           | 0     | 超过最大执行时间的操作数 |
| Max_execution_time_set                                | 0     | 设置了最大执行时间的操作数 |
| Max_execution_time_set_failed                         | 0     | 设置最大执行时间失败的操作数 |
| Max_used_connections                                  | 2     | 同时使用的连接的最大数量 |
| Max_used_connections_time                             | 2024-05-20 14:50:15 | 达到最大使用连接数的时间 |
| Mysqlx_aborted_clients                                | 0     | MySQL X协议中断的客户端数量 |
| Mysqlx_address                                        | ::    | MySQL X协议监听的地址 |
| Mysqlx_bytes_received                                 | 0     | MySQL X协议接收的字节数 |
| Mysqlx_bytes_received_compressed_payload              | 0     | MySQL X协议接收的压缩载荷字节数 |
| Mysqlx_bytes_received_uncompressed_frame              | 0     | MySQL X协议接收的未压缩帧字节数 |
| Mysqlx_bytes_sent                                     | 0     | MySQL X协议发送的字节数 |
| Mysqlx_bytes_sent_compressed_payload                  | 0     | MySQL X协议发送的压缩载荷字节数 |
| Mysqlx_bytes_sent_uncompressed_frame                  | 0     | MySQL X协议发送的未压缩帧字节数 |
| Mysqlx_compression_algorithm                          |       | MySQL X协议使用的压缩算法 |
| Mysqlx_compression_level                              |       | MySQL X协议的压缩级别 |
| Mysqlx_connection_accept_errors                       | 0     | MySQL X协议接受连接时的错误数 |
| Mysqlx_connection_errors                              | 0     | MySQL X协议连接错误数 |
| Mysqlx_connections_accepted                           | 0     | MySQL X协议接受的连接数 |
| Mysqlx_connections_closed                             | 0     | MySQL X协议关闭的连接数 |
| Mysqlx_connections_rejected                           | 0     | MySQL X协议拒绝的连接数 |
| Mysqlx_crud_create_view                               | 0     | MySQL X协议执行的创建视图操作数 |
| Mysqlx_crud_delete                                    | 0     | MySQL X协议执行的删除操作数 |
| Mysqlx_crud_drop_view                                 | 0     | MySQL X协议执行的删除视图操作数 |
| Mysqlx_crud_find                                      | 0     | MySQL X协议执行的查找操作数 |
| Mysqlx_crud_insert                                    | 0     | MySQL X协议执行的插入操作数 |
| Mysqlx_crud_modify_view                               | 0     | MySQL X协议执行的修改视图操作数 |
| Mysqlx_crud_update                                    | 0     | MySQL X协议执行的更新操作数 |
| Mysqlx_cursor_close                                   | 0     | MySQL X协议关闭的游标数 |
| Mysqlx_cursor_fetch                                   | 0     | MySQL X协议获取的游标数 |
| Mysqlx_cursor_open                                    | 0     | MySQL X协议打开的游标数 |
| Mysqlx_errors_sent                                    | 0     | MySQL X协议发送的错误数 |
| Mysqlx_errors_unknown_message_type                    | 0     | MySQL X协议接收到的未知消息类型的错误数 |
| Mysqlx_expect_close                                   | 0     | MySQL X协议执行的EXPECT CLOSE操作数 |
| Mysqlx_expect_open                                    | 0     | MySQL X协议执行的EXPECT OPEN操作数 |
| Mysqlx_init_error                                     | 0     | MySQL X协议初始化错误数 |
| Mysqlx_messages_sent                                  | 0     | MySQL X协议发送的消息数 |
| Mysqlx_notice_global_sent                             | 0     | MySQL X协议发送的全局通知数 |
| Mysqlx_notice_other_sent                              | 0     | MySQL X协议发送的其他通知数 |
| Mysqlx_notice_warning_sent                            | 0     | MySQL X协议发送的警告通知数 |
| Mysqlx_notified_by_group_replication                  | 0     | 由组复制触发的MySQL X协议通知数 |
| Mysqlx_port                                           | 33060 | MySQL X协议监听的端口 |
| Mysqlx_prep_deallocate                                | 0     | MySQL X协议执行的预处理释放操作数 |
| Mysqlx_prep_execute                                   | 0     | MySQL X协议执行的预处理执行操作数 |
| Mysqlx_prep_prepare                                   | 0     | MySQL X协议执行的预处理准备操作数 |
| Mysqlx_rows_sent                                      | 0     | MySQL X协议发送的行数 |
| Mysqlx_sessions                                       | 0     | MySQL X协议的会话数 |
| Mysqlx_sessions_accepted                              | 0     | MySQL X协议接受的会话数 |
| Mysqlx_sessions_closed                                | 0     | MySQL X协议关闭的会话数 |
| Mysqlx_sessions_fatal_error                           | 0     | MySQL X协议会话中的致命错误数 |
| Mysqlx_sessions_killed                                | 0     | MySQL X协议杀死的会话数 |
| Mysqlx_sessions_rejected                              | 0     | MySQL X协议拒绝的会话数 |
| Mysqlx_socket                                         | /var/run/mysqld/mysqlx.sock | MySQL X协议监听的套接字 |
| Mysqlx_ssl_accepts                                    | 0     | MySQL X协议接受的SSL连接数 |
| Mysqlx_ssl_active                                     |       | MySQL X协议是否启用了SSL |
| Mysqlx_ssl_cipher                                     |       | MySQL X协议使用的SSL密码套件 |
| Mysqlx_ssl_cipher_list                                |       | MySQL X协议的SSL密码套件列表 |
| Mysqlx_ssl_ctx_verify_depth                           | 18446744073709551615 | MySQL X协议的SSL验证深度 |
| Mysqlx_ssl_ctx_verify_mode                            | 5     | MySQL X协议的SSL验证模式 |
| Mysqlx_ssl_finished_accepts                           | 0     | MySQL X协议完成的SSL接受操作数 |
| Mysqlx_ssl_server_not_after                           | May 18 14:32:07 2034 GMT | SSL服务器证书的有效期结束日期 |
| Mysqlx_ssl_server_not_before                          | May 20 14:32:07 2024 GMT | SSL服务器证书的有效期开始日期 |
| Mysqlx_ssl_verify_depth                               |       | MySQL X协议SSL验证的深度 |
| Mysqlx_ssl_verify_mode                                |       | MySQL X协议SSL验证的模式 |
| Mysqlx_ssl_version                                    |       | MySQL X协议使用的SSL版本 |
| Mysqlx_stmt_create_collection                         | 0     | MySQL X协议执行的创建集合操作数 |
| Mysqlx_stmt_create_collection_index                   | 0     | MySQL X协议执行的创建集合索引操作数 |
| Mysqlx_stmt_disable_notices                           | 0     | MySQL X协议执行的禁用通知操作数 |
| Mysqlx_stmt_drop_collection                           | 0     | MySQL X协议执行的删除集合操作数 |
| Mysqlx_stmt_drop_collection_index                     | 0     | MySQL X协议执行的删除集合索引操作数 |
| Mysqlx_stmt_enable_notices                            | 0     | MySQL X协议执行的启用通知操作数 |
| Mysqlx_stmt_ensure_collection                         | 0     | MySQL X协议执行的确保集合存在操作数 |
| Mysqlx_stmt_execute_mysqlx                            | 0     | MySQL X协议执行的mysqlx命令数 |
| Mysqlx_stmt_execute_sql                               | 0     | MySQL X协议执行的sql命令数 |
| Mysqlx_stmt_execute_xplugin                           | 0     | MySQL X协议执行的xplugin命令数 |
| Mysqlx_stmt_get_collection_options                    | 0     | MySQL X协议执行的获取集合选项操作数 |
| Mysqlx_stmt_kill_client                               | 0     | MySQL X协议执行的终止客户端操作数 |
| Mysqlx_stmt_list_clients                              | 0     | MySQL X协议执行的列出客户端操作数 |
| Mysqlx_stmt_list_notices                              | 0     | MySQL X协议执行的列出通知操作数 |
| Mysqlx_stmt_list_objects                              | 0     | MySQL X协议执行的列出对象操作数 |
| Mysqlx_stmt_modify_collection_options                 | 0     | MySQL X协议执行的修改集合选项操作数 |
| Mysqlx_stmt_ping                                      | 0     | MySQL X协议执行的ping操作数 |
| Mysqlx_worker_threads                                 | 2     | MySQL X协议的工作线程数 |
| Mysqlx_worker_threads_active                          | 0     | MySQL X协议的活动工作线程数 |
| Not_flushed_delayed_rows                              | 0     | 尚未刷新的延迟行数 |
| Ongoing_anonymous_transaction_count                   | 0     | 进行中的匿名事务数 |
| Open_files                                            | 6     | 打开的文件数 |
| Open_streams                                          | 0     | 打开的流数 |
| Open_table_definitions                                | 210   | 打开的表定义数 |
| Open_tables                                           | 276   | 打开的表数 |
| Opened_files                                          | 6     | 打开的文件数 |
| Opened_table_definitions                              | 4     | 打开的表定义数 |
| Opened_tables                                         | 18    | 打开的表数 |
| Performance_schema_accounts_lost                      | 0     | 性能模式中丢失的账户数 |
| Performance_schema_cond_classes_lost                  | 0     | 性能模式中丢失的条件类数 |
| Performance_schema_cond_instances_lost                | 0     | 性能模式中丢失的条件实例数 |
| Performance_schema_digest_lost                        | 0     | 性能模式中丢失的摘要数 |
| Performance_schema_file_classes_lost                  | 0     | 性能模式中丢失的文件类数 |
| Performance_schema_file_handles_lost                  | 0     | 性能模式中丢失的文件句柄数 |
| Performance_schema_file_instances_lost                | 0     | 性能模式中丢失的文件实例数 |
| Performance_schema_hosts_lost                         | 0     | 性能模式中丢失的主机数 |
| Performance_schema_index_stat_lost                    | 0     | 性能模式中丢失的索引统计数 |
| Performance_schema_locker_lost                        | 0     | 性能模式中丢失的锁定器数 |
| Performance_schema_memory_classes_lost                | 0     | 性能模式中丢失的内存类数 |
| Performance_schema_metadata_lock_lost                 | 0     | 性能模式中丢失的元数据锁数 |
| Performance_schema_mutex_classes_lost                 | 0     | 性能模式中丢失的互斥类数 |
| Performance_schema_mutex_instances_lost               | 0     | 性能模式中丢失的互斥实例数 |
| Performance_schema_nested_statement_lost              | 0     | 性能模式中丢失的嵌套语句数 |
| Performance_schema_prepared_statements_lost           | 0     | 性能模式中丢失的预处理语句数 |
| Performance_schema_program_lost                       | 0     | 性能模式中丢失的程序数 |
| Performance_schema_rwlock_classes_lost                | 0     | 性能模式中丢失的读写锁类数 |
| Performance_schema_rwlock_instances_lost              | 0     | 性能模式中丢失的读写锁实例数 |
| Performance_schema_session_connect_attrs_longest_seen | 130   | 性能模式中看到的最长的会话连接属性 |
| Performance_schema_session_connect_attrs_lost         | 0     | 性能模式中丢失的会话连接属性数 |
| Performance_schema_socket_classes_lost                | 0     | 性能模式中丢失的套接字类数 |
| Performance_schema_socket_instances_lost              | 0     | 性能模式中丢失的套接字实例数 |
| Performance_schema_stage_classes_lost                 | 0     | 性能模式中丢失的阶段类数 |
| Performance_schema_statement_classes_lost             | 0     | 性能模式中丢失的语句类数 |
| Performance_schema_table_handles_lost                 | 0     | 性能模式中丢失的表句柄数 |
| Performance_schema_table_instances_lost               | 0     | 性能模式中丢失的表实例数 |
| Performance_schema_table_lock_stat_lost               | 0     | 性能模式下丢失的表锁定统计 |
| Performance_schema_thread_classes_lost                | 0     | 性能模式下丢失的线程类 |
| Performance_schema_thread_instances_lost              | 0     | 性能模式下丢失的线程实例 |
| Performance_schema_users_lost                         | 0     | 性能模式下丢失的用户 |
| Prepared_stmt_count                                   | 0     | 预处理语句的数量 |
| Queries                                               | 707   | 执行的查询数量 |
| Questions                                             | 4     | 收到的查询数量 |
| Replica_open_temp_tables                              | 0     | 复制打开的临时表数量 |
| Resource_group_supported                              | ON    | 是否支持资源组 |
| Rsa_public_key                                        | -----BEGIN PUBLIC KEY-----...-----END PUBLIC KEY----- | RSA公钥 |
| Secondary_engine_execution_count                      | 0     | 次要引擎执行次数 |
| Select_full_join                                      | 2     | 执行全连接的SELECT语句数量 |
| Select_full_range_join                                | 0     | 对参与连接的每个表执行全范围扫描的SELECT语句数量 |
| Select_range                                          | 0     | 对第一个表使用范围索引的SELECT语句数量 |
| Select_range_check                                    | 0     | 对每一行检查键是否在给定范围内的SELECT语句数量 |
| Select_scan                                           | 2     | 对第一个表进行全扫描的SELECT语句数量 |
| Slave_open_temp_tables                                | 0     | 从服务器打开的临时表数量 |
| Slow_launch_threads                                   | 0     | 创建时间超过slow_launch_time秒的线程数量 |
| Slow_queries                                          | 0     | 查询时间超过long_query_time秒的查询数量 |
| Sort_merge_passes                                     | 0     | 排序算法已经执行的合并的数量 |
| Sort_range                                            | 0     | 在范围内排序的数量 |
| Sort_rows                                             | 8     | 已经排序的行数 |
| Sort_scan                                             | 2     | 扫描的排序数量 |
| Ssl_accept_renegotiates                               | 0     | SSL重新协商连接的次数 |
| Ssl_accepts                                           | 5     | SSL连接接受的次数 |
| Ssl_callback_cache_hits                               | 0     | SSL回调缓存命中次数 |
| Ssl_cipher                                            |       | SSL连接使用的密码套件 |
| Ssl_cipher_list                                       |       | SSL连接支持的密码套件列表 |
| Ssl_client_connects                                   | 0     | SSL客户端连接的数量 |
| Ssl_connect_renegotiates                              | 0     | SSL连接重新协商的次数 |
| Ssl_ctx_verify_depth                                  | 18446744073709551615 | SSL上下文验证深度 |
| Ssl_ctx_verify_mode                                   | 5     | SSL上下文验证模式 |
| Ssl_default_timeout                                   | 0     | SSL默认超时(秒) |
| Ssl_finished_accepts                                  | 5     | 完成的SSL接受操作的数量 |
| Ssl_finished_connects                                 | 0     | 完成的SSL连接操作的数量 |
| Ssl_server_not_after                                  | May 18 14:32:07 2034 GMT | SSL服务器证书的有效期结束日期 |
| Ssl_server_not_before                                 | May 20 14:32:07 2024 GMT | SSL服务器证书的有效期开始日期 |
| Ssl_session_cache_hits                                | 0     | SSL会话缓存命中的次数 |
| Ssl_session_cache_misses                              | 0     | SSL会话缓存未命中的次数 |
| Ssl_session_cache_mode                                | SERVER | SSL会话缓存模式 |
| Ssl_session_cache_overflows                           | 0     | SSL会话缓存溢出的次数 |
| Ssl_session_cache_size                                | 128   | SSL会话缓存大小 |
| Ssl_session_cache_timeout                             | 300   | SSL会话缓存超时(秒) |
| Ssl_session_cache_timeouts                            | 0     | SSL会话缓存超时的次数 |
| Ssl_sessions_reused                                   | 0     | 重用的SSL会话的数量 |
| Ssl_used_session_cache_entries                        | 0     | 使用的SSL会话缓存条目的数量 |
| Ssl_verify_depth                                      | 0     | SSL验证深度 |
| Ssl_verify_mode                                       | 0     | SSL验证模式 |
| Ssl_version                                           |       | SSL版本 |
| Table_locks_immediate                                 | 7     | 表锁定立即获得的次数 |
| Table_locks_waited                                    | 0     | 表锁定需要等待的次数 |
| Table_open_cache_hits                                 | 5     | 表打开缓存命中的次数 |
| Table_open_cache_misses                               | 18    | 表打开缓存未命中的次数 |
| Table_open_cache_overflows                            | 0     | 表打开缓存溢出的次数 |
| Tc_log_max_pages_used                                 | 0     | 事务坐标日志使用的最大页数 |
| Tc_log_page_size                                      | 0     | 事务坐标日志的页大小 |
| Tc_log_page_waits                                     | 0     | 事务坐标日志的页面等待次数 |
| Telemetry_traces_supported                            | ON    | 是否支持遥测跟踪 |
| Threads_cached                                        | 1     | 缓存的线程数量 |
| Threads_connected                                     | 1     | 当前打开的连接的数量 |
| Threads_created                                       | 2     | 创建的线程数量 |
| Threads_running                                       | 2     | 当前运行的线程数量 |
| Tls_library_version                                   | OpenSSL 3.0.11 19 Sep 2023 | TLS库版本 |
| Uptime                                                | 1258  | 服务器已经运行的时间(秒) |
| Uptime_since_flush_status                             | 1258  | 自上次刷新状态以来的运行时间(秒) |
499 rows in set (0.00 sec)
mysql> 

MySQL 服务器的当前状态 (终端输出内容–英文版)

mysql> show status;
| Variable_name                                         |Value|
| Aborted_clients                                       | 0   |
| Aborted_connects                                      | 1   |
| Acl_cache_items_count                                 | 0   |
| Binlog_cache_disk_use                                 | 0   |
| Binlog_cache_use                                      | 0   |
| Binlog_stmt_cache_disk_use                            | 0   |
| Binlog_stmt_cache_use                                 | 0   |
| Bytes_received                                        | 309 |
| Bytes_sent                                            | 463 |
| Caching_sha2_password_rsa_public_key                  | -----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3ecKBjYfMfYZS6
yZYkCRCn13CeUJG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3vdBG8chdU79jjy
Wu5a4MSb1VdHiG9w0BAQEFAAOCAQ8AMIIMIBCgKCAQEAsJwrtS3DYUI+fVqX2UIR
KZSCCI8bdaDfRrymoef/D/EAAOAUQH6KwxShvScOPEfUih9TOkzqO8JMjRHZsbDB
IJ5nw4VK62DI4190fXxxE40yf4g4OYRGZqqBRal2dATq5cbCaMERuMlgT/5c/iWH
NunO9ltA+0+Y2/X0YOqWqxDmaTfck+xz5Szk3gnzKYwcVlG/XQtVBh3JwgGYToaB
/QIDAQAB
-----END PUBLIC KEY-----|
| Com_admin_commands                                    | 0   |
| Com_assign_to_keycache                                | 0   |
| Com_alter_db                                          | 0   |
| Com_alter_event                                       | 0   |
| Com_alter_function                                    | 0   |
| Com_alter_instance                                    | 0   |
| Com_alter_procedure                                   | 0   |
| Com_alter_resource_group                              | 0   |
| Com_alter_server                                      | 0   |
| Com_alter_table                                       | 0   |
| Com_alter_tablespace                                  | 0   |
| Com_alter_user                                        | 0   |
| Com_alter_user_default_role                           | 0   |
| Com_analyze                                           | 0   |
| Com_begin                                             | 0   |
| Com_binlog                                            | 0   |
| Com_call_procedure                                    | 0   |
| Com_change_db                                         | 0   |
| Com_change_master                                     | 0   |
| Com_change_repl_filter                                | 0   |
| Com_change_replication_source                         | 0   |
| Com_check                                             | 0   |
| Com_checksum                                          | 0   |
| Com_clone                                             | 0   |
| Com_commit                                            | 0   |
| Com_create_db                                         | 0   |
| Com_create_event                                      | 0   |
| Com_create_function                                   | 0   |
| Com_create_index                                      | 0   |
| Com_create_procedure                                  | 0   |
| Com_create_role                                       | 0   |
| Com_create_server                                     | 0   |
| Com_create_table                                      | 0   |
| Com_create_resource_group                             | 0   |
| Com_create_trigger                                    | 0   |
| Com_create_udf                                        | 0   |
| Com_create_user                                       | 0   |
| Com_create_view                                       | 0   |
| Com_create_spatial_reference_system                   | 0   |
| Com_dealloc_sql                                       | 0   |
| Com_delete                                            | 0   |
| Com_delete_multi                                      | 0   |
| Com_do                                                | 0   |
| Com_drop_db                                           | 0   |
| Com_drop_event                                        | 0   |
| Com_drop_function                                     | 0   |
| Com_drop_index                                        | 0   |
| Com_drop_procedure                                    | 0   |
| Com_drop_resource_group                               | 0   |
| Com_drop_role                                         | 0   |
| Com_drop_server                                       | 0   |
| Com_drop_spatial_reference_system                     | 0   |
| Com_drop_table                                        | 0   |
| Com_drop_trigger                                      | 0   |
| Com_drop_user                                         | 0   |
| Com_drop_view                                         | 0   |
| Com_empty_query                                       | 0   |
| Com_execute_sql                                       | 0   |
| Com_explain_other                                     | 0   |
| Com_flush                                             | 0   |
| Com_get_diagnostics                                   | 0   |
| Com_grant                                             | 0   |
| Com_grant_roles                                       | 0   |
| Com_ha_close                                          | 0   |
| Com_ha_open                                           | 0   |
| Com_ha_read                                           | 0   |
| Com_help                                              | 0   |
| Com_import                                            | 0   |
| Com_insert                                            | 0   |
| Com_insert_select                                     | 0   |
| Com_install_component                                 | 0   |
| Com_install_plugin                                    | 0   |
| Com_kill                                              | 0   |
| Com_load                                              | 0   |
| Com_lock_instance                                     | 0   |
| Com_lock_tables                                       | 0   |
| Com_optimize                                          | 0   |
| Com_preload_keys                                      | 0   |
| Com_prepare_sql                                       | 0   |
| Com_purge                                             | 0   |
| Com_purge_before_date                                 | 0   |
| Com_release_savepoint                                 | 0   |
| Com_rename_table                                      | 0   |
| Com_rename_user                                       | 0   |
| Com_repair                                            | 0   |
| Com_replace                                           | 0   |
| Com_replace_select                                    | 0   |
| Com_reset                                             | 0   |
| Com_resignal                                          | 0   |
| Com_restart                                           | 0   |
| Com_revoke                                            | 0   |
| Com_revoke_all                                        | 0   |
| Com_revoke_roles                                      | 0   |
| Com_rollback                                          | 0   |
| Com_rollback_to_savepoint                             | 0   |
| Com_savepoint                                         | 0   |
| Com_select                                            | 1   |
| Com_set_option                                        | 0   |
| Com_set_password                                      | 0   |
| Com_set_resource_group                                | 0   |
| Com_set_role                                          | 0   |
| Com_signal                                            | 0   |
| Com_show_binlog_events                                | 0   |
| Com_show_binlogs                                      | 0   |
| Com_show_charsets                                     | 0   |
| Com_show_collations                                   | 0   |
| Com_show_create_db                                    | 0   |
| Com_show_create_event                                 | 0   |
| Com_show_create_func                                  | 0   |
| Com_show_create_proc                                  | 0   |
| Com_show_create_table                                 | 0   |
| Com_show_create_trigger                               | 0   |
| Com_show_databases                                    | 2   |
| Com_show_engine_logs                                  | 0   |
| Com_show_engine_mutex                                 | 0   |
| Com_show_engine_status                                | 0   |
| Com_show_events                                       | 0   |
| Com_show_errors                                       | 0   |
| Com_show_fields                                       | 0   |
| Com_show_function_code                                | 0   |
| Com_show_function_status                              | 0   |
| Com_show_grants                                       | 0   |
| Com_show_keys                                         | 0   |
| Com_show_master_status                                | 0   |
| Com_show_open_tables                                  | 0   |
| Com_show_plugins                                      | 0   |
| Com_show_privileges                                   | 0   |
| Com_show_procedure_code                               | 0   |
| Com_show_procedure_status                             | 0   |
| Com_show_processlist                                  | 0   |
| Com_show_profile                                      | 0   |
| Com_show_profiles                                     | 0   |
| Com_show_relaylog_events                              | 0   |
| Com_show_replicas                                     | 0   |
| Com_show_slave_hosts                                  | 0   |
| Com_show_replica_status                               | 0   |
| Com_show_slave_status                                 | 0   |
| Com_show_status                                       | 1   |
| Com_show_storage_engines                              | 0   |
| Com_show_table_status                                 | 0   |
| Com_show_tables                                       | 0   |
| Com_show_triggers                                     | 0   |
| Com_show_variables                                    | 0   |
| Com_show_warnings                                     | 0   |
| Com_show_create_user                                  | 0   |
| Com_shutdown                                          | 0   |
| Com_replica_start                                     | 0   |
| Com_slave_start                                       | 0   |
| Com_replica_stop                                      | 0   |
| Com_slave_stop                                        | 0   |
| Com_group_replication_start                           | 0   |
| Com_group_replication_stop                            | 0   |
| Com_stmt_execute                                      | 0   |
| Com_stmt_close                                        | 0   |
| Com_stmt_fetch                                        | 0   |
| Com_stmt_prepare                                      | 0   |
| Com_stmt_reset                                        | 0   |
| Com_stmt_send_long_data                               | 0   |
| Com_truncate                                          | 0   |
| Com_uninstall_component                               | 0   |
| Com_uninstall_plugin                                  | 0   |
| Com_unlock_instance                                   | 0   |
| Com_unlock_tables                                     | 0   |
| Com_update                                            | 0   |
| Com_update_multi                                      | 0   |
| Com_xa_commit                                         | 0   |
| Com_xa_end                                            | 0   |
| Com_xa_prepare                                        | 0   |
| Com_xa_recover                                        | 0   |
| Com_xa_rollback                                       | 0   |
| Com_xa_start                                          | 0   |
| Com_stmt_reprepare                                    | 0   |
| Compression                                           | OFF |
| Compression_algorithm                                 |     |
| Compression_level                                     | 0   |
| Connection_errors_accept                              | 0   |
| Connection_errors_internal                            | 0   |
| Connection_errors_max_connections                     | 0   |
| Connection_errors_peer_address                        | 0   |
| Connection_errors_select                              | 0   |
| Connection_errors_tcpwrap                             | 0   |
| Connections                                           | 17  |
| Created_tmp_disk_tables                               | 0   |
| Created_tmp_files                                     | 5   |
| Created_tmp_tables                                    | 0   |
| Current_tls_ca                                        | ca.pem|
| Current_tls_capath                                    |     |
| Current_tls_cert                                      | server-cert.pem  |
| Current_tls_cipher                                    |     |
| Current_tls_ciphersuites                              |     |
| Current_tls_crl                                       |     |
| Current_tls_crlpath                                   |     |
| Current_tls_key                                       | server-key.pem   |
| Current_tls_version                                   | TLSv1.2,TLSv1.3  |
| Delayed_errors                                        | 0   |
| Delayed_insert_threads                                | 0   |
| Delayed_writes                                        | 0   |
| Deprecated_use_i_s_processlist_count                  | 0   |
| Deprecated_use_i_s_processlist_last_timestamp         | 0   |
| Error_log_buffered_bytes                              | 1128|
| Error_log_buffered_events                             | 8   |
| Error_log_expired_events                              | 0   |
| Error_log_latest_write                                | 1716215534735783 |
| Flush_commands                                        | 3   |
| Global_connection_memory                              | 0   |
| Handler_commit                                        | 3   |
| Handler_delete                                        | 0   |
| Handler_discover                                      | 0   |
| Handler_external_lock                                 | 46  |
| Handler_mrr_init                                      | 0   |
| Handler_prepare                                       | 0   |
| Handler_read_first                                    | 4   |
| Handler_read_key                                      | 21  |
| Handler_read_last                                     | 0   |
| Handler_read_next                                     | 10  |
| Handler_read_prev                                     | 0   |
| Handler_read_rnd                                      | 0   |
| Handler_read_rnd_next                                 | 10  |
| Handler_rollback                                      | 0   |
| Handler_savepoint                                     | 0   |
| Handler_savepoint_rollback                            | 0   |
| Handler_update                                        | 0   |
| Handler_write                                         | 0   |
| Innodb_buffer_pool_dump_status                        | Dumping of buffer pool not started|
| Innodb_buffer_pool_load_status                        | Buffer pool(s) load completed at 240520 14:32:14|
| Innodb_buffer_pool_resize_status                      |     |
| Innodb_buffer_pool_resize_status_code                 | 0   |
| Innodb_buffer_pool_resize_status_progress             | 0   |
| Innodb_buffer_pool_pages_data                         | 1309|
| Innodb_buffer_pool_bytes_data                         | 21446656|
| Innodb_buffer_pool_pages_dirty                        | 0   |
| Innodb_buffer_pool_bytes_dirty                        | 0   |
| Innodb_buffer_pool_pages_flushed                      | 255 |
| Innodb_buffer_pool_pages_free                         | 6864|
| Innodb_buffer_pool_pages_misc                         | 19  |
| Innodb_buffer_pool_pages_total                        | 8192|
| Innodb_buffer_pool_read_ahead_rnd                     | 0   |
| Innodb_buffer_pool_read_ahead                         | 0   |
| Innodb_buffer_pool_read_ahead_evicted                 | 0   |
| Innodb_buffer_pool_read_requests                      | 63275|
| Innodb_buffer_pool_reads                              | 1161|
| Innodb_buffer_pool_wait_free                          | 0   |
| Innodb_buffer_pool_write_requests                     | 2309|
| Innodb_data_fsyncs                                    | 199 |
| Innodb_data_pending_fsyncs                            | 0   |
| Innodb_data_pending_reads                             | 0   |
| Innodb_data_pending_writes                            | 0   |
| Innodb_data_read                                      | 19089920|
| Innodb_data_reads                                     | 1181|
| Innodb_data_writes                                    | 408 |
| Innodb_data_written                                   | 4332032|
| Innodb_dblwr_pages_written                            | 110 |
| Innodb_dblwr_writes                                   | 30  |
| Innodb_redo_log_read_only                             | OFF |
| Innodb_redo_log_uuid                                  | 4040442583 |
| Innodb_redo_log_checkpoint_lsn                        | 32189425 |
| Innodb_redo_log_current_lsn                           | 32189425  |
| Innodb_redo_log_flushed_to_disk_lsn                   | 32189425 |
| Innodb_redo_log_logical_size                          | 512 |
| Innodb_redo_log_physical_size                         | 3276800 |
| Innodb_redo_log_capacity_resized                      | 104857600 |
| Innodb_redo_log_resize_status                         | OK  |
| Innodb_log_waits                                      | 0   |
| Innodb_log_write_requests                             | 1003|
| Innodb_log_writes                                     | 95  |
| Innodb_os_log_fsyncs                                  | 77  |
| Innodb_os_log_pending_fsyncs                          | 0   |
| Innodb_os_log_pending_writes                          | 0   |
| Innodb_os_log_written                                 | 117248 |
| Innodb_page_size                                      | 16384|
| Innodb_pages_created                                  | 152 |
| Innodb_pages_read                                     | 1160|
| Innodb_pages_written                                  | 255 |
| Innodb_redo_log_enabled                               | ON  |
| Innodb_row_lock_current_waits                         | 0   |
| Innodb_row_lock_time                                  | 0   |
| Innodb_row_lock_time_avg                              | 0   |
| Innodb_row_lock_time_max                              | 0   |
| Innodb_row_lock_waits                                 | 0   |
| Innodb_rows_deleted                                   | 0   |
| Innodb_rows_inserted                                  | 0   |
| Innodb_rows_read                                      | 0   |
| Innodb_rows_updated                                   | 0   |
| Innodb_system_rows_deleted                            | 8   |
| Innodb_system_rows_inserted                           | 47  |
| Innodb_system_rows_read                               | 21331|
| Innodb_system_rows_updated                            | 331 |
| Innodb_sampled_pages_read                             | 0   |
| Innodb_sampled_pages_skipped                          | 0   |
| Innodb_num_open_files                                 | 15  |
| Innodb_truncated_status_writes                        | 0   |
| Innodb_undo_tablespaces_total                         | 2   |
| Innodb_undo_tablespaces_implicit                      | 2   |
| Innodb_undo_tablespaces_explicit                      | 0   |
| Innodb_undo_tablespaces_active                        | 2   |
| Key_blocks_not_flushed                                | 0   |
| Key_blocks_unused                                     | 6698|
| Key_blocks_used                                       | 0   |
| Key_read_requests                                     | 0   |
| Key_reads                                             | 0   |
| Key_write_requests                                    | 0   |
| Key_writes                                            | 0   |
| Last_query_cost                                       | 7.799008|
| Last_query_partial_plans                              | 13  |
| Locked_connects                                       | 0   |
| Max_execution_time_exceeded                           | 0   |
| Max_execution_time_set                                | 0   |
| Max_execution_time_set_failed                         | 0   |
| Max_used_connections                                  | 2   |
| Max_used_connections_time                             | 2024-05-20 14:50:15|
| Mysqlx_aborted_clients                                | 0   |
| Mysqlx_address                                        | ::  |
| Mysqlx_bytes_received                                 | 0   |
| Mysqlx_bytes_received_compressed_payload              | 0   |
| Mysqlx_bytes_received_uncompressed_frame              | 0   |
| Mysqlx_bytes_sent                                     | 0   |
| Mysqlx_bytes_sent_compressed_payload                  | 0   |
| Mysqlx_bytes_sent_uncompressed_frame                  | 0   |
| Mysqlx_compression_algorithm                          |     |
| Mysqlx_compression_level                              |     |
| Mysqlx_connection_accept_errors                       | 0   |
| Mysqlx_connection_errors                              | 0   |
| Mysqlx_connections_accepted                           | 0   |
| Mysqlx_connections_closed                             | 0   |
| Mysqlx_connections_rejected                           | 0   |
| Mysqlx_crud_create_view                               | 0   |
| Mysqlx_crud_delete                                    | 0   |
| Mysqlx_crud_drop_view                                 | 0   |
| Mysqlx_crud_find                                      | 0   |
| Mysqlx_crud_insert                                    | 0   |
| Mysqlx_crud_modify_view                               | 0   |
| Mysqlx_crud_update                                    | 0   |
| Mysqlx_cursor_close                                   | 0   |
| Mysqlx_cursor_fetch                                   | 0   |
| Mysqlx_cursor_open                                    | 0   |
| Mysqlx_errors_sent                                    | 0   |
| Mysqlx_errors_unknown_message_type                    | 0   |
| Mysqlx_expect_close                                   | 0   |
| Mysqlx_expect_open                                    | 0   |
| Mysqlx_init_error                                     | 0   |
| Mysqlx_messages_sent                                  | 0   |
| Mysqlx_notice_global_sent                             | 0   |
| Mysqlx_notice_other_sent                              | 0   |
| Mysqlx_notice_warning_sent                            | 0   |
| Mysqlx_notified_by_group_replication                  | 0   |
| Mysqlx_port                                           | 33060|
| Mysqlx_prep_deallocate                                | 0   |
| Mysqlx_prep_execute                                   | 0   |
| Mysqlx_prep_prepare                                   | 0   |
| Mysqlx_rows_sent                                      | 0   |
| Mysqlx_sessions                                       | 0   |
| Mysqlx_sessions_accepted                              | 0   |
| Mysqlx_sessions_closed                                | 0   |
| Mysqlx_sessions_fatal_error                           | 0   |
| Mysqlx_sessions_killed                                | 0   |
| Mysqlx_sessions_rejected                              | 0   |
| Mysqlx_socket                                         | /var/run/mysqld/mysqlx.sock|
| Mysqlx_ssl_accepts                                    | 0   |
| Mysqlx_ssl_active                                     |     |
| Mysqlx_ssl_cipher                                     |     |
| Mysqlx_ssl_cipher_list                                |     |
| Mysqlx_ssl_ctx_verify_depth                           | 18446744073709551615      |
| Mysqlx_ssl_ctx_verify_mode                            | 5   |
| Mysqlx_ssl_finished_accepts                           | 0   |
| Mysqlx_ssl_server_not_after                           | May 18 14:32:07 2034 GMT  |
| Mysqlx_ssl_server_not_before                          | May 20 14:32:07 2024 GMT  |
| Mysqlx_ssl_verify_depth                               |     |
| Mysqlx_ssl_verify_mode                                |     |
| Mysqlx_ssl_version                                    |     |
| Mysqlx_stmt_create_collection                         | 0   |
| Mysqlx_stmt_create_collection_index                   | 0   |
| Mysqlx_stmt_disable_notices                           | 0   |
| Mysqlx_stmt_drop_collection                           | 0   |
| Mysqlx_stmt_drop_collection_index                     | 0   |
| Mysqlx_stmt_enable_notices                            | 0   |
| Mysqlx_stmt_ensure_collection                         | 0   |
| Mysqlx_stmt_execute_mysqlx                            | 0   |
| Mysqlx_stmt_execute_sql                               | 0   |
| Mysqlx_stmt_execute_xplugin                           | 0   |
| Mysqlx_stmt_get_collection_options                    | 0   |
| Mysqlx_stmt_kill_client                               | 0   |
| Mysqlx_stmt_list_clients                              | 0   |
| Mysqlx_stmt_list_notices                              | 0   |
| Mysqlx_stmt_list_objects                              | 0   |
| Mysqlx_stmt_modify_collection_options                 | 0   |
| Mysqlx_stmt_ping                                      | 0   |
| Mysqlx_worker_threads                                 | 2   |
| Mysqlx_worker_threads_active                          | 0   |
| Not_flushed_delayed_rows                              | 0   |
| Ongoing_anonymous_transaction_count                   | 0   |
| Open_files                                            | 6   |
| Open_streams                                          | 0   |
| Open_table_definitions                                | 210 |
| Open_tables                                           | 276 |
| Opened_files                                          | 6   |
| Opened_table_definitions                              | 4   |
| Opened_tables                                         | 18  |
| Performance_schema_accounts_lost                      | 0   |
| Performance_schema_cond_classes_lost                  | 0   |
| Performance_schema_cond_instances_lost                | 0   |
| Performance_schema_digest_lost                        | 0   |
| Performance_schema_file_classes_lost                  | 0   |
| Performance_schema_file_handles_lost                  | 0   |
| Performance_schema_file_instances_lost                | 0   |
| Performance_schema_hosts_lost                         | 0   |
| Performance_schema_index_stat_lost                    | 0   |
| Performance_schema_locker_lost                        | 0   |
| Performance_schema_memory_classes_lost                | 0   |
| Performance_schema_metadata_lock_lost                 | 0   |
| Performance_schema_mutex_classes_lost                 | 0   |
| Performance_schema_mutex_instances_lost               | 0   |
| Performance_schema_nested_statement_lost              | 0   |
| Performance_schema_prepared_statements_lost           | 0   |
| Performance_schema_program_lost                       | 0   |
| Performance_schema_rwlock_classes_lost                | 0   |
| Performance_schema_rwlock_instances_lost              | 0   |
| Performance_schema_session_connect_attrs_longest_seen | 130 |
| Performance_schema_session_connect_attrs_lost         | 0   |
| Performance_schema_socket_classes_lost                | 0   |
| Performance_schema_socket_instances_lost              | 0   |
| Performance_schema_stage_classes_lost                 | 0   |
| Performance_schema_statement_classes_lost             | 0   |
| Performance_schema_table_handles_lost                 | 0   |
| Performance_schema_table_instances_lost               | 0   |
| Performance_schema_table_lock_stat_lost               | 0   |
| Performance_schema_thread_classes_lost                | 0   |
| Performance_schema_thread_instances_lost              | 0   |
| Performance_schema_users_lost                         | 0   |
| Prepared_stmt_count                                   | 0   |
| Queries                                               | 707 |
| Questions                                             | 4   |
| Replica_open_temp_tables                              | 0   |
| Resource_group_supported                              | ON  |
| Rsa_public_key                                        | -----BEGIN PUBLIC KEY-----
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3ecKBjYfMfYZS6
yZYkCRCn13NBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsJwrtS3echdU79jjy
Wu5a4MSb1VdHiiS2us2KJgqiGIRjkOD+vqsDyEdA370sIzbUbQ0DYUI+fVqX2UIR
KZSCCI8bdaDfRrymoef/D/EAA2DI4190fXxxE40yf4g4OYRGZqqBRakMjRHZsbDB
IJ5nw4VK62DI4190fXxxE40yf4g4OYRGZqqBRal2dATq5cbCaMERuMlgT/5c/iWH
NunO9ltA+0+Y2/X0YOqWqxDmaTfck+xz5Szk3gnzKYwcVlG/XQtVBh3JwgGYToaB
/QIDAQAB
-----END PUBLIC KEY-----|
| Secondary_engine_execution_count                      | 0   |
| Select_full_join                                      | 2   |
| Select_full_range_join                                | 0   |
| Select_range                                          | 0   |
| Select_range_check                                    | 0   |
| Select_scan                                           | 2   |
| Slave_open_temp_tables                                | 0   |
| Slow_launch_threads                                   | 0   |
| Slow_queries                                          | 0   |
| Sort_merge_passes                                     | 0   |
| Sort_range                                            | 0   |
| Sort_rows                                             | 8   |
| Sort_scan                                             | 2   |
| Ssl_accept_renegotiates                               | 0   |
| Ssl_accepts                                           | 5   |
| Ssl_callback_cache_hits                               | 0   |
| Ssl_cipher                                            |     |
| Ssl_cipher_list                                       |     |
| Ssl_client_connects                                   | 0   |
| Ssl_connect_renegotiates                              | 0   |
| Ssl_ctx_verify_depth                                  | 18446744073709551615      |
| Ssl_ctx_verify_mode                                   | 5   |
| Ssl_default_timeout                                   | 0   |
| Ssl_finished_accepts                                  | 5   |
| Ssl_finished_connects                                 | 0   |
| Ssl_server_not_after                                  | May 18 14:32:07 2034 GMT  |
| Ssl_server_not_before                                 | May 20 14:32:07 2024 GMT  |
| Ssl_session_cache_hits                                | 0   |
| Ssl_session_cache_misses                              | 0   |
| Ssl_session_cache_mode                                | SERVER                    |
| Ssl_session_cache_overflows                           | 0   |
| Ssl_session_cache_size                                | 128 |
| Ssl_session_cache_timeout                             | 300 |
| Ssl_session_cache_timeouts                            | 0   |
| Ssl_sessions_reused                                   | 0   |
| Ssl_used_session_cache_entries                        | 0   |
| Ssl_verify_depth                                      | 0   |
| Ssl_verify_mode                                       | 0   |
| Ssl_version                                           |     |
| Table_locks_immediate                                 | 7   |
| Table_locks_waited                                    | 0   |
| Table_open_cache_hits                                 | 5   |
| Table_open_cache_misses                               | 18  |
| Table_open_cache_overflows                            | 0   |
| Tc_log_max_pages_used                                 | 0   |
| Tc_log_page_size                                      | 0   |
| Tc_log_page_waits                                     | 0   |
| Telemetry_traces_supported                            | ON  |
| Threads_cached                                        | 1   |
| Threads_connected                                     | 1   |
| Threads_created                                       | 2   |
| Threads_running                                       | 2   |
| Tls_library_version                                   | OpenSSL 3.0.11 19 Sep 2023|
| Uptime                                                | 1258|
| Uptime_since_flush_status                             | 1258|499 rows in set (0.00 sec)mysql> 

相关文章:

  • Java应用中文件上传安全性分析与安全实践
  • ModuleNotFoundError: No module named ‘import_export‘
  • 《TCP/IP网络编程》(第十二章)I/O复用(1)
  • 嵌入式学习记录5.18(多点通信)
  • Node.js和npm常用命令
  • element-ui组件table去除下方滚动条,实现鼠标左右拖拽移动表格
  • 四、通信和网络安全—局域网|广域网|远程连接和攻击技术(CISSP)
  • 让大模型更聪明——复杂而艰巨的任务
  • C++类与对象的特性
  • 【算法刷题day60】Leetcode:84. 柱状图中最大的矩形
  • 大规模语言模型的书籍分享
  • 听说部门来了个00后测试开发,一顿操作给我整麻了
  • 自己动手写docker——Namespace
  • 【chagpt】广泛使用API之前:考虑成本和数据隐私
  • 01-05.Vue自定义过滤器
  • 【笔记】你不知道的JS读书笔记——Promise
  • axios请求、和返回数据拦截,统一请求报错提示_012
  • CoolViewPager:即刻刷新,自定义边缘效果颜色,双向自动循环,内置垂直切换效果,想要的都在这里...
  • es的写入过程
  • extjs4学习之配置
  • IDEA常用插件整理
  • laravel with 查询列表限制条数
  • nodejs实现webservice问题总结
  • Python十分钟制作属于你自己的个性logo
  • 反思总结然后整装待发
  • 飞驰在Mesos的涡轮引擎上
  • 每个JavaScript开发人员应阅读的书【1】 - JavaScript: The Good Parts
  • 通信类
  • 一加3T解锁OEM、刷入TWRP、第三方ROM以及ROOT
  • 原生JS动态加载JS、CSS文件及代码脚本
  • 在Docker Swarm上部署Apache Storm:第1部分
  • 在Mac OS X上安装 Ruby运行环境
  • 最简单的无缝轮播
  • 专访Pony.ai 楼天城:自动驾驶已经走过了“从0到1”,“规模”是行业的分水岭| 自动驾驶这十年 ...
  • ​决定德拉瓦州地区版图的关键历史事件
  • #13 yum、编译安装与sed命令的使用
  • (aiohttp-asyncio-FFmpeg-Docker-SRS)实现异步摄像头转码服务器
  • (Java入门)学生管理系统
  • (PySpark)RDD实验实战——取一个数组的中间值
  • (ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY)讲解
  • (二)windows配置JDK环境
  • (分类)KNN算法- 参数调优
  • (附源码)springboot 基于HTML5的个人网页的网站设计与实现 毕业设计 031623
  • (四)c52学习之旅-流水LED灯
  • (转)重识new
  • *(长期更新)软考网络工程师学习笔记——Section 22 无线局域网
  • ./和../以及/和~之间的区别
  • .NET : 在VS2008中计算代码度量值
  • .NET 6 Mysql Canal (CDC 增量同步,捕获变更数据) 案例版
  • .NET Core IdentityServer4实战-开篇介绍与规划
  • .NET Entity FrameWork 总结 ,在项目中用处个人感觉不大。适合初级用用,不涉及到与数据库通信。
  • .net 开发怎么实现前后端分离_前后端分离:分离式开发和一体式发布
  • .net对接阿里云CSB服务
  • .net反编译工具
  • @KafkaListener注解详解(一)| 常用参数详解