最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

zeroMQ on windows----ipc 不支持

业界 admin 10浏览 0评论

 

参考连接:https://stackoverflow/questions/8492377/how-to-use-zeromqs-inproc-and-ipc-transports

 

zmq.error.ZMQError: Protocol not supported

 

 

在windows上,能使用zeroMQ的协议只有:


To the best of my knowledge, UDP is not supported by 0MQ. Also, IPC is only supported on OSes which have a POSIX-conforming implementation of named pipes; so, on Windows, you can really only use 'inproc', TCP, or PGM. However, above and beyond all this, one of 0MQ's major features is that your protocol is just part of the address. You can take any example, change the socket address, and everything should still work just fine (subject, of course, to the afore-mentioned restrictions). Also, the ZGuide has many examples (a good number of which are available in Python).

 

参考连接:https://stackoverflow/questions/8492377/how-to-use-zeromqs-inproc-and-ipc-transports

 

zmq.error.ZMQError: Protocol not supported

 

 

在windows上,能使用zeroMQ的协议只有:


To the best of my knowledge, UDP is not supported by 0MQ. Also, IPC is only supported on OSes which have a POSIX-conforming implementation of named pipes; so, on Windows, you can really only use 'inproc', TCP, or PGM. However, above and beyond all this, one of 0MQ's major features is that your protocol is just part of the address. You can take any example, change the socket address, and everything should still work just fine (subject, of course, to the afore-mentioned restrictions). Also, the ZGuide has many examples (a good number of which are available in Python).

发布评论

评论列表 (0)

  1. 暂无评论