2020年11月24日

mysql中EXPLAIN 的作用

摘要: (一)id列: (1)、id 相同执行顺序由上到下 mysql> explain -> SELECT*FROM tb_order tb1 -> LEFT JOIN tb_product tb2 ON tb1.tb_product_id = tb2.id -> LEFT JOIN tb_user tb 阅读全文

posted @ 2020-11-24 20:21 dearroy 阅读(468) 评论(0) 推荐(0) 编辑

ORACLE ANALYZE使用小结

摘要: ANALYZE的介绍 使用ANALYZE可以收集或删除对象的统计信息、验证对象的结构、标识表或cluster中的行迁移/行链接信息等。官方文档关于ANALYZE功能介绍如下: · Collect or delete statistics about an index or index partiti 阅读全文

posted @ 2020-11-24 15:22 dearroy 阅读(299) 评论(0) 推荐(0) 编辑

redis之master.slave主从复制

摘要: 简介 主机数据更新后根据配置和策略,自动同步到备机的master/slave机制,master以写为主,slave以读为主 从库配置 配置从库,不配主库 配置从库: 格式: slaveof 主库ip 主库port 注意: 每次与master断开之后,都需要重新连接,除非配置到redis.conf文件 阅读全文

posted @ 2020-11-24 08:20 dearroy 阅读(142) 评论(0) 推荐(0) 编辑

导航