Pipe vs msg queue

前端 未结 2 1462
野趣味
野趣味 2021-02-12 14:25

What is the difference between message queues and a pipe in Linux?

2条回答
  •  清酒与你
    2021-02-12 14:51

    Off the top of my head and assuming you talk about posix message queues (not the SysV ones):

    • Pipes aren't limited in size, message queues are.
    • Pipes can be integrated in systems using file descriptors, message queues have their own set of functions, though linux supports select(), poll(), epoll() and friends on the mqd_t.
    • Pipes, once closed, require some amount of cooperation on both sides to reestablish them, message queues can be closed and reopened on either side without the coorporation of the other side.
    • Pipes are flat, much like a stream, to impose a message structure you would have to implement a protocol on both sides, message queues are message oriented already, no care has to be taken to get, say, the fifth message in the queue.

提交回复
热议问题