Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ZeroMQ/JeroMQ publish one message on multiple topics

Tags:

zeromq

Is it possible for zmq pub socket to publish same message on multiple topics? Or put another way is it possible for a sub socket to match one of the many prefixes in a pub/sub envelope's header frames?

like image 606
FUD Avatar asked Sep 11 '25 13:09

FUD


1 Answers

I'm pretty sure the answer is "no" -- the SUB socket does prefix matching on the first frame only.

like image 83
offby1 Avatar answered Sep 14 '25 08:09

offby1