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.
一台服务器 - ZMQ_ROUTER,许多客户端 - ZMQ_DEALER
服务器(ZMQ_ROUTER)如何向所有客户端(ZMQ_DEALER)发送消息?
UPD:我知道有 PUB-SUB 模式,这正是我需要的。但我只想使用当前的 ROUTER-DEALER 套接字。是否可以?
是的,但这不是您想听到的答案。我认为没有标志或套接字选项。你可以做什么:
手动跟踪连接dealers,而不是创建一个循环并将相同的内容发送给每个连接的经销商。如果您发送大型消息,您可以零复制负载,因此您不必不时分配内存。
dealers