上一页 1 2 3 4 5 6 7 8 9 10 ··· 31 下一页
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14789938.html B树 叶子节点具有相同的深度,叶子节点的指针为空 所有索引元素不重复 节点中的数据索引从左到右递增排列 B+树 是B树的变种 非叶子节点不存储data,只存储索引,可以放更多的索 阅读全文
posted @ 2021-05-20 15:18 李白与酒 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14701977.html Project Directory Maven Dependency <?xml version="1.0" encoding="UTF-8"?> <project xmlns= 阅读全文
posted @ 2021-04-25 20:46 李白与酒 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14700811.html Project Directory Maven Dependency <?xml version="1.0" encoding="UTF-8"?> <project xmlns= 阅读全文
posted @ 2021-04-25 16:21 李白与酒 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14672294.html 下载source code wget https://mirrors.tuna.tsinghua.edu.cn/apache/spark/spark-3.1.1/spark-3. 阅读全文
posted @ 2021-04-17 22:00 李白与酒 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14661797.html zset常规操作 127.0.0.1:6379> zadd my_key 1 one (integer) 1 127.0.0.1:6379> zadd my_key 2 two 阅读全文
posted @ 2021-04-15 11:45 李白与酒 阅读(139) 评论(0) 推荐(0) 编辑
摘要: Reference: https://blog.csdn.net/Alen_xiaoxin/article/details/104753391 Hash 索引的限制和弊端 Hash 索引结构的特殊性,其检索效率非常高,索引的检索可以一次定位,不像B+Tree 索引需要从根节点到枝节点,最后才能访问到 阅读全文
posted @ 2021-02-20 09:48 李白与酒 阅读(1451) 评论(0) 推荐(1) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14398087.html 存储模式说明 Seata Server端的存储模式有三种 file db redis 默认为file 搭建DB存储模式 下载安装包 wget https://github.com 阅读全文
posted @ 2021-02-11 20:01 李白与酒 阅读(1487) 评论(0) 推荐(0) 编辑
摘要: 原创转载请请注明出处:https://www.cnblogs.com/agilestyle/p/14389347.html Shell步骤 # 下载安装包 wget https://github.com/alibaba/nacos/releases/download/1.4.1/nacos-serv 阅读全文
posted @ 2021-02-08 16:24 李白与酒 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 原创转载请注明出处:https://www.cnblogs.com/agilestyle/p/14376570.html 比如正在调试某个系统,IDEA显示8086端口被占用 使用 lsof -i:8086 排查端口占用情况 使用 kill -9 10436 强杀进程 再次使用 lsof -i:80 阅读全文
posted @ 2021-02-05 11:01 李白与酒 阅读(66) 评论(0) 推荐(0) 编辑
摘要: Reference:https://time.geekbang.org/column/article/338320 为什么Netty网络处理性能高? 因为Netty采用了Reactor模式。 为什么用了Reactor模式性能就高? 因为Reactor模式是基于IO多路复用的事件驱动模式。 为什么IO 阅读全文
posted @ 2021-01-31 20:52 李白与酒 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 31 下一页