From b565cb1a7dd7a4e71f55690531a5e952eccad676 Mon Sep 17 00:00:00 2001 From: Hozuki Date: Tue, 5 May 2026 14:14:25 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E7=BA=A0=E6=AD=A3=E4=BC=98=E5=85=88?= =?UTF-8?q?=E7=BA=A7=E9=98=9F=E5=88=97=E4=B8=AD=E7=9A=84=E8=A1=A8=E8=BF=B0?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 原文:“优先级高的**队列**会先被消费。” 纠正:“优先级高的**消息**会先被消费。” 解释:优先级队列是指同一个队列内部的消息具有优先级的区分,Broker 会对队列中堆积的消息按照优先级进行排序,优先级高的消息会被优先投递给消费者,而不是指队列本身有优先级。 --- docs/high-performance/message-queue/rabbitmq-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/high-performance/message-queue/rabbitmq-questions.md b/docs/high-performance/message-queue/rabbitmq-questions.md index 343e69e17b4..48dbe347d72 100644 --- a/docs/high-performance/message-queue/rabbitmq-questions.md +++ b/docs/high-performance/message-queue/rabbitmq-questions.md @@ -214,7 +214,7 @@ RabbitMQ 本身是没有延迟队列的,要实现延迟消息,一般有两 ## 什么是优先级队列? -RabbitMQ 自 V3.5.0 有优先级队列实现,优先级高的队列会先被消费。 +RabbitMQ 自 V3.5.0 有优先级队列实现,优先级高的消息会先被消费。 可以通过`x-max-priority`参数来实现优先级队列。不过,当消费速度大于生产速度且 Broker 没有堆积的情况下,优先级显得没有意义。 From 7f6ab1bf9fd072b84678be9120c32675c2496db9 Mon Sep 17 00:00:00 2001 From: Hozuki Date: Tue, 5 May 2026 14:41:06 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E7=BA=A0=E6=AD=A3=E4=BC=98=E5=85=88?= =?UTF-8?q?=E7=BA=A7=E9=98=9F=E5=88=97=E4=B8=AD=E7=9A=84=E8=A1=A8=E8=BF=B0?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 原文:“优先级高的队列会先被消费。” 纠正:“优先级高的消息会先被消费。” 解释:优先级队列是指同一个队列内部的消息具有优先级的区分,Broker 会对队列中堆积的消息按照优先级进行排序,优先级高的消息会被优先投递给消费者,而不是指队列本身有优先级。 --- docs/high-performance/message-queue/rabbitmq-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/high-performance/message-queue/rabbitmq-questions.md b/docs/high-performance/message-queue/rabbitmq-questions.md index 48dbe347d72..a0b02d81561 100644 --- a/docs/high-performance/message-queue/rabbitmq-questions.md +++ b/docs/high-performance/message-queue/rabbitmq-questions.md @@ -214,7 +214,7 @@ RabbitMQ 本身是没有延迟队列的,要实现延迟消息,一般有两 ## 什么是优先级队列? -RabbitMQ 自 V3.5.0 有优先级队列实现,优先级高的消息会先被消费。 +RabbitMQ 自 V3.5.0 有优先级队列实现。同一个优先级队列里,优先级高的消息会优先投递给消费者。 可以通过`x-max-priority`参数来实现优先级队列。不过,当消费速度大于生产速度且 Broker 没有堆积的情况下,优先级显得没有意义。 From eaf44324e07c4f8fc18f58be1f9e3fec858bcde4 Mon Sep 17 00:00:00 2001 From: Hozuki Date: Tue, 5 May 2026 20:44:12 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E7=BA=A0=E6=AD=A3=E4=BC=98=E5=85=88?= =?UTF-8?q?=E7=BA=A7=E9=98=9F=E5=88=97=E4=B8=AD=E7=9A=84=E8=A1=A8=E8=BF=B0?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 原文:“优先级高的队列会先被消费。” 纠正:“优先级高的消息会先被消费。” 解释:优先级队列是指同一个队列内部的消息具有优先级的区分,Broker 会对队列中堆积的消息按照优先级进行排序,优先级高的消息会被优先投递给消费者,而不是指队列本身有优先级。 --- docs/high-performance/message-queue/rabbitmq-questions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/high-performance/message-queue/rabbitmq-questions.md b/docs/high-performance/message-queue/rabbitmq-questions.md index a0b02d81561..2d86464d3ff 100644 --- a/docs/high-performance/message-queue/rabbitmq-questions.md +++ b/docs/high-performance/message-queue/rabbitmq-questions.md @@ -214,7 +214,7 @@ RabbitMQ 本身是没有延迟队列的,要实现延迟消息,一般有两 ## 什么是优先级队列? -RabbitMQ 自 V3.5.0 有优先级队列实现。同一个优先级队列里,优先级高的消息会优先投递给消费者。 +RabbitMQ 自 V3.5.0 有优先级队列实现。优先级队列是指同一个队列内部的消息具有优先级的区分,Broker 会对队列中堆积的消息按照优先级进行排序,优先级高的消息会被优先投递给消费者,而不是指队列本身有优先级。 可以通过`x-max-priority`参数来实现优先级队列。不过,当消费速度大于生产速度且 Broker 没有堆积的情况下,优先级显得没有意义。