Which ZeroMQ pattern is best of an asynchronous pair of sockets?
问题 I have a server (running on Amazon) and a single client that connects to it. After a connect has been established the client and server exclusively communicate with each other and send messages. e.g. 1. Client -> Server 2. Client -> Server 3. Client <- Server 4. Client -> Server 5. Client <- Server 6. Client <- Server The client might lost connectivity and re-connect after some time and resume message sending. Also what are the implications of the order of messages? Could #2 arrive before #1?