From e81358e7fa519584bb71b34e0f5902f8df8ac5ca Mon Sep 17 00:00:00 2001 From: kevin Date: Sat, 17 Oct 2020 19:20:01 +0800 Subject: [PATCH] update doc --- readme-en.md | 2 +- readme.md | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/readme-en.md b/readme-en.md index 2f46da2e..110abe09 100644 --- a/readme-en.md +++ b/readme-en.md @@ -27,7 +27,7 @@ Advantages of go-zero: ## 1. Backgrounds of go-zero -At the beginning of 2018, we heavily suffered from frequent downtime. We decided to re-design our system, from monolithic architecture with Java+MongoDB to microservice architecture. After researches and comparison, we chose to: +At the beginning of 2018, we decided to re-design our system, from monolithic architecture with Java+MongoDB to microservice architecture. After researches and comparison, we chose to: * Golang based * great performance diff --git a/readme.md b/readme.md index 1694e9eb..9b187c97 100644 --- a/readme.md +++ b/readme.md @@ -27,7 +27,7 @@ go-zero 包含极简的 API 定义和生成工具 goctl,可以根据定义的 ## 1. go-zero框架背景 -18年初,晓黑板后端在经过频繁的宕机后,决定从`Java+MongoDB`的单体架构迁移到微服务架构,经过仔细思考和对比,我们决定: +18年初,我们决定从`Java+MongoDB`的单体架构迁移到微服务架构,经过仔细思考和对比,我们决定: * 基于Go语言 * 高效的性能 @@ -36,7 +36,7 @@ go-zero 包含极简的 API 定义和生成工具 goctl,可以根据定义的 * 极致的部署体验 * 极低的服务端资源成本 * 自研微服务框架 - * 个人有过很多微服务框架自研经验 + * 有过很多微服务框架自研经验 * 需要有更快速的问题定位能力 * 更便捷的增加新特性 @@ -45,12 +45,13 @@ go-zero 包含极简的 API 定义和生成工具 goctl,可以根据定义的 对于微服务框架的设计,我们期望保障微服务稳定性的同时,也要特别注重研发效率。所以设计之初,我们就有如下一些准则: * 保持简单 +* 弹性设计,面向故障编程 +* 工具大于约定和文档 * 高可用 * 高并发 * 易扩展 -* 弹性设计,面向故障编程 -* 尽可能对业务开发友好,封装复杂度 -* 尽可能约束做一件事只有一种方式 +* 对业务开发友好,封装复杂度 +* 约束做一件事只有一种方式 我们经历不到半年时间,彻底完成了从`Java+MongoDB`到`Golang+MySQL`为主的微服务体系迁移,并于18年8月底完全上线,稳定保障了晓黑板后续增长,确保了整个服务的高可用。