zmq는 이런데서는 확 떨어지는 구나
Shared Memory > MQ > UDS > FIFO > Pipe > TCP 이런식인데
POSIX Message Queue가 생각외로 성능이 잘 나와서 놀랍다.
IPC | Message rate |
Pipe | 36539 msg/s |
FIFOs (named pipes) | 26246 msg/s |
Message Queue | 67920 msg/s |
Shared Memory | 3821893 msg/s |
TCP sockets | 22483 msg/s |
Unix domain sockets | 40683 msg/s |
ZeroMQ | 15414 msg/s |
'Linux API > linux' 카테고리의 다른 글
SIGPIPE (0) | 2022.10.17 |
---|---|
linux ipc 최대 데이터 길이 (0) | 2022.10.11 |
posix message queue (0) | 2022.09.21 |
zeroMQ (0) | 2022.09.20 |
파일 존재유무 확인하기 (0) | 2022.02.11 |