Files
nexus/wiki/concepts/微服务.md
2026-04-17 08:38:12 +08:00

23 lines
533 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
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
- [[消息队列]]
- [[容器化]]
- [[服务边界]]