08 2022 档案
摘要:重新指定 delve ,步骤如下: 1、git clone https://github.com/go-delve/delve.git 2、cd delve mkdir bin go build -o bin\dlv.exe cmd\dlv\main.go 3、进入goland, Help->Edi
阅读全文
摘要:借一张图 1、下载 https://github.com/etcd-io/etcd git clone https://github.com/etcd-io/etcd.git 2、编译 进入etcd目录, mac/linux下, make clean && make build 在etcd/bin目
阅读全文
摘要:1、下载 http://gitblit.github.io/gitblit/ https://github.com/gitblit/gitblit/releases/download/v1.9.3/gitblit-1.9.3.zip 2、解压 gitblit-1.9.3.zip 3、编辑 defau
阅读全文
摘要:1、业务结构——模块化、集群 负载均衡、路由调度 2、模块化拆分 3、资源分层治理 在接口层可以做诸多防护、统计、熔断机制 4、数据库 分库分表、主从模式、读写分离。 水平分表、垂直分表。 用中间件,如 mycat
阅读全文
摘要:Netty中使用Reactor三种模式: Reactor 单线程模式 EventLoopGroup eventGroup = new NioEventLoopGroup(1); ServerBootstrap serverBootstrap = new ServerBootstrap(); serv
阅读全文
摘要:一、初次安装过程 1、环境准备 go开发环境 https://go.dev/dl/ java8开发环境 本文所用环境 MacBook-Pro 2、Terry-Mao/goim 是一个支持集群的im及实时推送服务。 GOIM源码地址 https://github.com/Terry-Mao/goim
阅读全文