How to protect ZeroMQ Request Reply pattern against potential drops of messages?
I'm trying to implement a ZeroMQ pattern on the TCP layer between a c# application and distributed python servers. I've gotten a version working with the request-reply REQ/REP pattern and it seems relatively stable when testing on localhost . However, in testing, I've debugged a few situations, where I accidently send multiple requests before receiving a reply which apparently is not acceptable. In practice the network will likely have lots of dropped packets and I suspect that I'll be dropping lots of replies and/or unable to send requests. 1) Is there a way to reset the connection between