You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use SocketType PAIR mode. After connecting to the server, the client can receive and receive data normally. But after running for a period of time, the server cannot receive data.
The text was updated successfully, but these errors were encountered:
@ProgramDance can you provide a bit more information? Because JeroMQ doesn't support inproc (just yet), it's not a suitable socket type.
While PAIR sockets can be used over transports other than inproc, their inability to auto-reconnect coupled with the fact that new incoming connections will be terminated while any previous connections (including ones in a closing state) exist makes them unsuitable for TCP in most cases.
I would suggest generally to use dealer/router in a server type application without knowing more information.
Use SocketType PAIR mode. After connecting to the server, the client can receive and receive data normally. But after running for a period of time, the server cannot receive data.
The text was updated successfully, but these errors were encountered: