Can ZeroMQ be used to accept traditional socket requests?

前端 未结 2 1676
Happy的楠姐
Happy的楠姐 2021-02-15 10:31

I\'m trying to re-write one of our old Servers using ZeroMQ, for now I have the following Server setup, (which works for Zmq requests):

    using (var context =          


        
相关标签:
2条回答
  • 2021-02-15 11:00

    You can achieve this using ZMQ_STREAM sockets.

    Please note that since zeroMQ 4.x, the RAW router option has been deprecated for a new ZMQ_STREAM socket type, that works the same way as ROUTER + RAW.

    It seems it is bound to evolve, though.

    I recently tried ZMQ_STREAM sockets in version 4.0.1.

    You can open one, use zmq_rcv until you receive the whole message (you have to check it is whole yourself), or zmq_msg_rcv to let ZeroMQ handle it. You will receive an identifier message part, just like the identifier you would find in ROUTER sockets, directly followed by one ONLY body part. There is no empty delimiter between them like there would be using a REQ Socket talking to a ROUTER Socket. So if you route them, be sure to add it yourself.

    Beware though: if there is latency on the other end or if your message exceeds ZeroMQ ZMQ_STREAM buffers (mine are 8192 bytes long), your message can be interpreted by zeroMQ as a series of messages.

    In that case, you will receive as many different ZeroMQ messages including both the identifier part and the body part, and it is your job to aggregate them, knowing that if several clients are talking to the STREAM socket, they might get mixed up. I personnally use a hash table using the binary identifier as a key, and delete the entry from the table when I know the message is complete and sent to the next node.

    Sending through a ZMQ_STREAM with zmq_msg_send or zmq_send works fine as is.

    0 讨论(0)
  • 2021-02-15 11:09

    You probably have to use zmq's RAW socket type (instead of REP) to connect with and read client data without zmq-specific framing.

    HTTP Server in C (from Pieter's blog)
    http://hintjens.com/blog:42

    RAW Socket type info
    https://github.com/hintjens/libzmq/commit/777c38ae32a5d1799b3275d38ff8d587c885dd55

    0 讨论(0)
提交回复
热议问题