zeromq / jeromq

JeroMQ is a pure Java implementation of the ZeroMQ messaging library, offering high-performance asynchronous messaging for distributed or concurrent applications.
https://zeromq.org
Mozilla Public License 2.0
2.37k stars 485 forks source link

ipc #953

Open jinyuttt opened 1 year ago

jinyuttt commented 1 year ago

Cppzmq, jerozmq cannot communicate using ipc

trevorbernard commented 1 year ago

This is a known issue. Under the covers in JeroMQ, IPC gets converted to TCP. This was a decision made way before Java supported UNIX Domain Sockets. This issue is being worked on.

eelcocramer commented 1 year ago

@trevorbernard great to hear this is being worked on. Any idea when this might become available? Is there help needed?

fbacchella commented 1 year ago

I started to play with a generic solution on this branch: https://github.com/fbacchella/jeromq/tree/networkprotocolserviceprovider.

But I am out of time to make any progress on it.