ZeroMQ ipc not working
If you are using Zero MQ IPC endpoint url like ipc://someendpoint. Then communication between two threads of same process will work perfectly fine. But it will fail if you are trying to communicate across the processes. If you look at ZeroMQ document properly end point should correspond to path. Thats where above end point url works fine for intra process communication as this file someendpoint will correspond to file in current directory from where you are running this app.
[Read More]