上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 39 下一页
摘要: 在环境变量中添加变量 linux echo 'export PUB_HOSTED_URL="https://mirrors.tuna.tsinghua.edu.cn/dart-pub"' >> ~/.bashrc source ~/.bashrc 加载变量文件 windows 重启IDE或者cmd即 阅读全文
posted @ 2020-12-11 10:09 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 操作系统:window10、 linux:ubuntu/centos window10 dos命令、批处理linux shell命令 文本: 建议用markdown格式 Typoratxt 记事本其他临时编辑某个文件内容 subline text 画图 简单的画图 直接用windows的画图工具 复 阅读全文
posted @ 2020-12-11 09:06 HumorChen99 阅读(1) 评论(0) 推荐(0) 编辑
摘要: GRPC GRPC是谷歌google出的一款RPC框架,RPC是远程过程调用remote procedure call,就是像调用本地方法一样调用远程机器上的方法 提供被调用的方法写在xxx.proto文件中,然后我们利用maven的compile编译生成代码,然后将定义的那些方法实现即可。绑定端口 阅读全文
posted @ 2020-12-10 13:51 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: SpringBoot Nacos 安装及配置入门Demo 基于注解 安装 下载tar包 github https://github.com/alibaba/nacos/releases/tag/1.4.0 不过下载的有时候很慢 csdn https://download.csdn.net/downl 阅读全文
posted @ 2020-12-10 10:59 HumorChen99 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 这个文章写的挺好,转载过来。原文地址见最后 Log Structured Merge Trees(LSM) 原理十年前,谷歌发表了 “BigTable” 的论文,论文中很多很酷的方面之一就是它所使用的文件组织方式,这个方法更一般的名字叫 Log Structured-Merge Tree。LSM是当 阅读全文
posted @ 2020-12-10 10:44 HumorChen99 阅读(38) 评论(0) 推荐(0) 编辑
摘要: RocksDB rocksdb是一款由Facebook使用C/C++开发的嵌入式的持久化的KV数据库 基于Google的LevelDB改进而来,redis是基于内存的会存在丢失情况,而RocksDB不会丢失且性能极好(硬盘和SSD)。 属于单机数据库,且同一库只可被一个进程读取写入。(线程安全需要用 阅读全文
posted @ 2020-12-09 18:33 HumorChen99 阅读(22) 评论(0) 推荐(0) 编辑
摘要: Netty Websocket多人多房间聊天室Demo 描述:可任意输入自己的昵称和要加入的聊天室名,即可加入聊天室进行聊天,在同一个聊天室内的所有人的发言每个人都会立即收到 项目使用springboot,源码https://download.csdn.net/download/HumorChen9 阅读全文
posted @ 2020-12-04 11:36 HumorChen99 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Netty Websocket 回声聊天室案例 讲解参照我netty聊天室的博客 Demo源码地址https://gitee.com/HumorChen/netty_websocket_demo 仅供参考 项目名 netty_websocket_demo Maven依赖 完整依赖在最后 <!--ne 阅读全文
posted @ 2020-12-04 11:35 HumorChen99 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 复制一下脚本执行,即可直接安装好docker echo '开始安装docker' && sudo apt-get remove docker docker-engine docker.io containerd runc && sudo apt-get update && sudo apt-get 阅读全文
posted @ 2020-12-01 15:52 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
摘要: Ansible ansible 安装 #ubantu使用 apt install ansible -y #centos使用 yum install ansible -y ansible 配置 #编辑配置文件在最后进行配置(见下面代码框) vim /etc/ansible/hosts #下面代码框,第 阅读全文
posted @ 2020-11-27 18:46 HumorChen99 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 39 下一页