我正在尝试通过IPC实现PUB / SUB。如果我更改了下面的代码以便订阅者绑定到“tcp:// *:5000”并且发布者连接到“tcp:// localhost:5000”它可以工作,但是我不能让它在IPC上工作。我做错了什么?
subscriber.py
import zmq, json
def main():
context = zmq.Context()
subscriber = context.socket(zmq.SUB)
subscriber.bind("ipc://test")
subscriber.setsockopt(zmq.SUBSCRIBE, '')
while True:
print subscriber.recv()
if __name__ == "__main__":
main()
publisher.py
import zmq, json, time
def main():
context = zmq.Context()
publisher = context.socket(zmq.PUB)
publisher.connect("ipc://test")
while True:
publisher.send( "hello world" )
time.sleep( 1 )
if __name__ == "__main__":
main()
答案 0 :(得分:24)
最可能的原因是您在不同的目录中运行发布者。尝试使用管道位置的绝对路径:“ipc:///tmp/test.pipe”。您现在使用它的方式使其与当前工作目录相关。