diff --git a/docs/high-performance/message-queue/rabbitmq-questions.md b/docs/high-performance/message-queue/rabbitmq-questions.md index 343e69e17b4..bffd8356140 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 没有堆积的情况下,优先级显得没有意义。