How to use Zeromq's inproc and ipc transports?

后端 未结 4 1020
故里飘歌
故里飘歌 2021-02-02 13:57

Im a newbie to ZERMQ. ZeroMQ has TCP, INPROC and IPC transports. I\'m looking for examples using python and inproc in Winx64 and python 2.7, which could also be used for linux.

4条回答
  •  野的像风
    2021-02-02 14:33

    ZeroMQ has thread-safe UDP support as of March 2016:

    • You have to use the Radio/Dish pattern (very similar to Pub/Sub)
    • Supported in libzmq and czmq
    • See tests/test_udp.cpp, tests/test_radio_dish.cppin the libzmq source code
    • Full breakdown providided by Doron Somech on zeromq-dev@ list thread: Thread safe Pub/Sub and Multicast

提交回复
热议问题