├── BlogArticle ├── 原来这就是网络 │ ├── README.md │ ├── 物理层-1.png │ ├── 物理层-2.png │ └── 物理层-3.png ├── 史上最全后台开发成长指南 │ └── README.md ├── 后台工程师职业能力提升之道 │ └── README.md ├── 如何画好架构图:7种常用类型与示例 │ ├── README.md │ ├── image-1.png │ ├── image-2.png │ └── image.png ├── 如何给GameServer做压测 │ └── README.md ├── 带你通俗易懂的了解进程、线程和协程 │ ├── README.md │ ├── image-1.png │ ├── image-2.png │ └── image.png ├── 开发中对象命名的一点思考 │ └── README.md ├── 有栈协程与无栈协程 │ └── README.md ├── 服务端开发必备:9大性能优化秘技 │ ├── README.md │ └── 服务端开发必备:9大性能优化秘技.png ├── 深入理解Linux的TCP三次握手 │ └── README.md ├── 游戏推荐业务中基于Sentinel的动态限流实践 │ └── README.md ├── 聊聊布隆过滤器-Go语言实践篇 │ └── README.md ├── 英语进阶指南 │ └── README.md ├── 转转门店基于MQ的Http重试实践 │ └── README.md └── 通过实例理解Web应用用户密码存储方案 │ └── README.md ├── Book ├── TCP-IP详解1-卷1-协议 │ └── README.md ├── 代码大全-第2版-纪念版 │ └── README.md └── 现代操作系统-第4版 │ └── README.md ├── Essays ├── Go接口相关的优化技巧 │ └── README.md ├── ProtoJson可能会限制表设计 │ └── README.md ├── Redis多机部署 │ ├── README.md │ ├── image1.png │ ├── image2.png │ ├── image3.png │ └── image4.png ├── 关于Actor模型的思考 │ └── README.md ├── 初级Go工程师 │ ├── 容器 │ │ └── Map │ │ │ └── README.md │ ├── 泛型 │ │ └── README.md │ ├── 深拷贝与浅拷贝 │ │ ├── README.md │ │ └── image.png │ └── 类型转换 │ │ └── README.md ├── 浅谈游戏ECS架构 │ └── README.md ├── 游戏冷启动阶段后端配置热更 │ ├── README.md │ └── image.png ├── 游戏架构中为啥远程服务调用选型gRPC │ └── README.md ├── 游戏登录系统设计 │ ├── README.md │ └── image.png └── 部署游戏后端,win下使用docker遇见的坑 │ ├── README.md │ └── image.png ├── Pictures ├── Code Complete, 2nd Edition.jpg ├── Computer Systems- A Programmer's Perspective.jpg ├── Modern Operating Systems (4th Edition).jpg ├── Operating Systems- Three Easy Pieces.jpg ├── TCP-IP Illustrated- The Protocols, Volume 1.jpg └── Tencent Game Development Essentials II.jpg └── README.md /BlogArticle/原来这就是网络/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/原来这就是网络/README.md -------------------------------------------------------------------------------- /BlogArticle/原来这就是网络/物理层-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/原来这就是网络/物理层-1.png -------------------------------------------------------------------------------- /BlogArticle/原来这就是网络/物理层-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/原来这就是网络/物理层-2.png -------------------------------------------------------------------------------- /BlogArticle/原来这就是网络/物理层-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/原来这就是网络/物理层-3.png -------------------------------------------------------------------------------- /BlogArticle/史上最全后台开发成长指南/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/史上最全后台开发成长指南/README.md -------------------------------------------------------------------------------- /BlogArticle/后台工程师职业能力提升之道/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/后台工程师职业能力提升之道/README.md -------------------------------------------------------------------------------- /BlogArticle/如何画好架构图:7种常用类型与示例/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/如何画好架构图:7种常用类型与示例/README.md -------------------------------------------------------------------------------- /BlogArticle/如何画好架构图:7种常用类型与示例/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/如何画好架构图:7种常用类型与示例/image-1.png -------------------------------------------------------------------------------- /BlogArticle/如何画好架构图:7种常用类型与示例/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/如何画好架构图:7种常用类型与示例/image-2.png -------------------------------------------------------------------------------- /BlogArticle/如何画好架构图:7种常用类型与示例/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/如何画好架构图:7种常用类型与示例/image.png -------------------------------------------------------------------------------- /BlogArticle/如何给GameServer做压测/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/如何给GameServer做压测/README.md -------------------------------------------------------------------------------- /BlogArticle/带你通俗易懂的了解进程、线程和协程/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/带你通俗易懂的了解进程、线程和协程/README.md -------------------------------------------------------------------------------- /BlogArticle/带你通俗易懂的了解进程、线程和协程/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/带你通俗易懂的了解进程、线程和协程/image-1.png -------------------------------------------------------------------------------- /BlogArticle/带你通俗易懂的了解进程、线程和协程/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/带你通俗易懂的了解进程、线程和协程/image-2.png -------------------------------------------------------------------------------- /BlogArticle/带你通俗易懂的了解进程、线程和协程/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/带你通俗易懂的了解进程、线程和协程/image.png -------------------------------------------------------------------------------- /BlogArticle/开发中对象命名的一点思考/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/开发中对象命名的一点思考/README.md -------------------------------------------------------------------------------- /BlogArticle/有栈协程与无栈协程/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/有栈协程与无栈协程/README.md -------------------------------------------------------------------------------- /BlogArticle/服务端开发必备:9大性能优化秘技/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/服务端开发必备:9大性能优化秘技/README.md -------------------------------------------------------------------------------- /BlogArticle/服务端开发必备:9大性能优化秘技/服务端开发必备:9大性能优化秘技.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/服务端开发必备:9大性能优化秘技/服务端开发必备:9大性能优化秘技.png -------------------------------------------------------------------------------- /BlogArticle/深入理解Linux的TCP三次握手/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/深入理解Linux的TCP三次握手/README.md -------------------------------------------------------------------------------- /BlogArticle/游戏推荐业务中基于Sentinel的动态限流实践/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/游戏推荐业务中基于Sentinel的动态限流实践/README.md -------------------------------------------------------------------------------- /BlogArticle/聊聊布隆过滤器-Go语言实践篇/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/聊聊布隆过滤器-Go语言实践篇/README.md -------------------------------------------------------------------------------- /BlogArticle/英语进阶指南/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/英语进阶指南/README.md -------------------------------------------------------------------------------- /BlogArticle/转转门店基于MQ的Http重试实践/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/转转门店基于MQ的Http重试实践/README.md -------------------------------------------------------------------------------- /BlogArticle/通过实例理解Web应用用户密码存储方案/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/BlogArticle/通过实例理解Web应用用户密码存储方案/README.md -------------------------------------------------------------------------------- /Book/TCP-IP详解1-卷1-协议/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Book/TCP-IP详解1-卷1-协议/README.md -------------------------------------------------------------------------------- /Book/代码大全-第2版-纪念版/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Book/代码大全-第2版-纪念版/README.md -------------------------------------------------------------------------------- /Book/现代操作系统-第4版/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Book/现代操作系统-第4版/README.md -------------------------------------------------------------------------------- /Essays/Go接口相关的优化技巧/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/Go接口相关的优化技巧/README.md -------------------------------------------------------------------------------- /Essays/ProtoJson可能会限制表设计/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/ProtoJson可能会限制表设计/README.md -------------------------------------------------------------------------------- /Essays/Redis多机部署/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/Redis多机部署/README.md -------------------------------------------------------------------------------- /Essays/Redis多机部署/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/Redis多机部署/image1.png -------------------------------------------------------------------------------- /Essays/Redis多机部署/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/Redis多机部署/image2.png -------------------------------------------------------------------------------- /Essays/Redis多机部署/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/Redis多机部署/image3.png -------------------------------------------------------------------------------- /Essays/Redis多机部署/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/Redis多机部署/image4.png -------------------------------------------------------------------------------- /Essays/关于Actor模型的思考/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/关于Actor模型的思考/README.md -------------------------------------------------------------------------------- /Essays/初级Go工程师/容器/Map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/初级Go工程师/容器/Map/README.md -------------------------------------------------------------------------------- /Essays/初级Go工程师/泛型/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/初级Go工程师/泛型/README.md -------------------------------------------------------------------------------- /Essays/初级Go工程师/深拷贝与浅拷贝/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/初级Go工程师/深拷贝与浅拷贝/README.md -------------------------------------------------------------------------------- /Essays/初级Go工程师/深拷贝与浅拷贝/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/初级Go工程师/深拷贝与浅拷贝/image.png -------------------------------------------------------------------------------- /Essays/初级Go工程师/类型转换/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/初级Go工程师/类型转换/README.md -------------------------------------------------------------------------------- /Essays/浅谈游戏ECS架构/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/浅谈游戏ECS架构/README.md -------------------------------------------------------------------------------- /Essays/游戏冷启动阶段后端配置热更/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/游戏冷启动阶段后端配置热更/README.md -------------------------------------------------------------------------------- /Essays/游戏冷启动阶段后端配置热更/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/游戏冷启动阶段后端配置热更/image.png -------------------------------------------------------------------------------- /Essays/游戏架构中为啥远程服务调用选型gRPC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/游戏架构中为啥远程服务调用选型gRPC/README.md -------------------------------------------------------------------------------- /Essays/游戏登录系统设计/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/游戏登录系统设计/README.md -------------------------------------------------------------------------------- /Essays/游戏登录系统设计/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/游戏登录系统设计/image.png -------------------------------------------------------------------------------- /Essays/部署游戏后端,win下使用docker遇见的坑/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/部署游戏后端,win下使用docker遇见的坑/README.md -------------------------------------------------------------------------------- /Essays/部署游戏后端,win下使用docker遇见的坑/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Essays/部署游戏后端,win下使用docker遇见的坑/image.png -------------------------------------------------------------------------------- /Pictures/Code Complete, 2nd Edition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Pictures/Code Complete, 2nd Edition.jpg -------------------------------------------------------------------------------- /Pictures/Computer Systems- A Programmer's Perspective.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Pictures/Computer Systems- A Programmer's Perspective.jpg -------------------------------------------------------------------------------- /Pictures/Modern Operating Systems (4th Edition).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Pictures/Modern Operating Systems (4th Edition).jpg -------------------------------------------------------------------------------- /Pictures/Operating Systems- Three Easy Pieces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Pictures/Operating Systems- Three Easy Pieces.jpg -------------------------------------------------------------------------------- /Pictures/TCP-IP Illustrated- The Protocols, Volume 1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Pictures/TCP-IP Illustrated- The Protocols, Volume 1.jpg -------------------------------------------------------------------------------- /Pictures/Tencent Game Development Essentials II.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/Pictures/Tencent Game Development Essentials II.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guowei-gong/GameBackendProgrammerStudyNotes/HEAD/README.md --------------------------------------------------------------------------------