mysql> explain select * from users where userid=1; idselect_typetablepar...
https://github.com/AobingJava/JavaFamily[https://github.com/AobingJava/J...
https://github.com/Snailclimb/JavaGuide[https://github.com/Snailclimb/Ja...
存儲引擎相關的命令 查看 MySQL 提供的所有存儲引擎 show engines; MySQL 當前默認的存儲引擎 show variable...
https://github.com/Snailclimb/JavaGuide/blob/master/docs/database/%E4%B8...
https://mp.weixin.qq.com/s/VtIpj-uuxFj5Bf6TmTJMTw[https://mp.weixin.qq.c...
簡介 HashMap 主要用來存放鍵值對,它基于哈希表的 Map 接口實現(xiàn),是常用的 Java 集合之一。 JDK1.8 之前 HashMap ...
1. TCP粘包、拆包圖解 假設客戶端分別發(fā)送了兩個數(shù)據(jù)包D1和D2給服務端,由于服務端一次讀取到字節(jié)數(shù)是不確定的,故可能存在以下四種情況: 1...
1.什么是索引 索引(Index)是幫助MySQL高效獲取數(shù)據(jù)的數(shù)據(jù)結構。 索引的本質:索引是數(shù)據(jù)結構 阿里巴巴《Java 開發(fā)手冊》提出單表行...