I\'m using pyzmq library with pub/sub pattern. I have some quick ZMQ publisher by .connect() method and a
pyzmq
.connect()
To set the queue/buffer size you need to set the high water marks via the socket options
setsockopt(zmq.SNDHWM, 10) setsockopt(zmq.RCVHWM, 10)