Auto-sync: 2026-04-17 08:37

This commit is contained in:
2026-04-17 08:38:12 +08:00
parent 6caa1c2f47
commit a0a48bd334
247 changed files with 6577 additions and 3061 deletions

View File

@@ -0,0 +1,22 @@
---
title: "微服务"
type: concept
tags: []
---
## Definition
微服务是一种架构模式,将系统拆解为多个独立开发、独立部署、独立扩容的服务。
## Key Points
- 每个服务处理一个业务边界Bounded Context
- 服务间通过 API 通信HTTP、RPC、MQ 等)
- 更灵活、更可扩展、容错更高
- 独立的数据存储和生命周期
## Source
- [[kai-fa-jing-yan-yu-xiang-mu-gui-fan-zheng-li-wen-dang]]
## Related Concepts
- [[消息队列]]
- [[容器化]]
- [[服务边界]]