[zeromq-dev] Quick question on usage of patterns

2012-07-12 Thread Diffuser78
Hello All, I need some suggestion on my design and ways in which it can be done using ZMQ sockets. I have an app App1 on Box1. It sends a message M1 (128K) to an app App2 on Box2. App2 will do some processing on M1 before sending an ACK back. In my application, I also want to send an ACK back

Re: [zeromq-dev] Quick question on usage of patterns

2012-07-12 Thread Andrew Hume
unless you're not telling us something, the simplest solution is two sockets: app1.PUSH = app2.PULL: for M1 app2.PUSH = app1.PULL: for various ACKs as for the matching, i would include an job id with M1 and the ACKs. or if you don't want to do that, use the system name (Box2) as the id. both