Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个关于 ZeroMQ 的问题PUB/SUB。发布者是为每个单独的订阅者创建一个单独的队列,还是为所有订阅者创建一个队列(因此受到最慢订阅者的限制)?
PUB/SUB
每个连接的订阅者都有自己的队列。当订阅者速度慢时,它自己的队列会填满然后溢出(高水位标记默认为 1,000),并且它的消息将被丢弃。这不会影响其他订阅者。