HTTP协议 2024-03-16 http 4803 words 10 mins read 源文 HTTP协议 http协议是超文本传输协议。它是基于TCP协议的应用层传输协议,即客户端和服务端进行数据传输的一种规则。该协议本身HTTP Read more...
TCP 与 UDP 的区别? 2024-03-16 tcp udp 1975 words 4 mins read TCP 与 UDP 的区别? TCP 基于连接 UDP 无连接; 对系统资源的要求(TCP较多,UDP少); TCP 流模式,UDP 数据报模式; TCP 保证数据正确性且保证数据顺序; UDP 可 Read more...
MySQL慢查询分析工具pt-query-digest 2024-03-16 mysql 2699 words 6 mins read MySQL慢查询分析工具pt-query-digest pt-query-digest是用于分析mysql慢日志的工具,它可以分析binlog Read more...
performance_schema 和 information_schema 的区别 2024-03-16 mysql 2858 words 6 mins read performance_schema 和 information_schema 的区别 performance_schema performance_schema这个库提供的是MySQL数据库性能的一些指标,主要保存 MySQL 服务器运行过程中的一些状态信息, 算 Read more...
怎么判断主从延迟? 2024-03-16 mysql 590 words 2 mins read 怎么判断主从延迟? 第一种:Seconds_Behind_Master 一种常规的方法就是 show slave status 查看 Seconds_Behind_Master, Read more...