From c61ffb02219feb9372e97ba38e7c2cb7019e62a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8A=E6=9C=88?= Date: Wed, 31 Jul 2024 17:32:26 +0800 Subject: [PATCH] Update 02whatis.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 单词错,"Comsumer"应该为Consumer. --- docs/00-introduction/02whatis.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/00-introduction/02whatis.md b/docs/00-introduction/02whatis.md index eb00a704dc..3276286f8f 100644 --- a/docs/00-introduction/02whatis.md +++ b/docs/00-introduction/02whatis.md @@ -2,7 +2,7 @@ 我们平时使用一些体育新闻软件,会订阅自己喜欢的一些球队板块,当有作者发表文章到相关的板块,我们就能收到相关的新闻推送。 -发布-订阅(Pub/Sub)是一种消息范式,消息的发送者(称为发布者、生产者、Producer)会将消息直接发送给特定的接收者(称为订阅者、消费者、Comsumer)。而RocketMQ的基础消息模型就是一个简单的Pub/Sub模型。 +发布-订阅(Pub/Sub)是一种消息范式,消息的发送者(称为发布者、生产者、Producer)会将消息直接发送给特定的接收者(称为订阅者、消费者、Consumer)。而RocketMQ的基础消息模型就是一个简单的Pub/Sub模型。 import Tabs from '@theme/Tabs'; @@ -63,7 +63,7 @@ import TabItem from '@theme/TabItem'; :::note 扩展的消息系统模型 -上图就是一个扩展后的消息模型,包括**两个生产者**,**两个消息Topic**,以及**两组消费者 Comsumer**。 +上图就是一个扩展后的消息模型,包括**两个生产者**,**两个消息Topic**,以及**两组消费者 Consumer**。 存储消息Topic的 **代理服务器**( **Broker** ),是实际部署过程对应的代理服务器。