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
we are experiencing issues with IPC sockets reliability on Windows. related issues #1175 and #1567
on macOS it works much more reliably. One of the differences between the two systems is that Windows uses named named-pipes for IPC, while UNIX domain sockets are used on macOS
I'm going to hold on this for now -- but I think I might well do this. I'd like to update both legacy nanomsg and mangos to do this as well, because it is an interoperability problem.
One other idea is to add a new URL scheme and transport just for UNIX sockets. I am thinking about that too.
Add unix:// as a UNIX domain IPC URL. Will be available unconditionally when supported.
Add winpipe:// as a new scheme that only supports Windows named pipes. Available on Windows and compatible with legacy IPC.
Add a compile time option to select whether ipc:// is unix:// or winpipe:// - will default to winpipe:// for 1.x, but I think in NNG 2.0 will change the default to IPC because honestly named pipes are a pain in my arse and I want to kick them to the curb.
Mangos will probably grow the same scheme as well.
Shared memory will be a new transport entirely. I don't have any immediate plans for this ... its complicated to do if you want to do it in a zero copy fashion. (Its easy to do if you accept data copies...)
we are experiencing issues with IPC sockets reliability on Windows. related issues #1175 and #1567
on macOS it works much more reliably. One of the differences between the two systems is that Windows uses named named-pipes for IPC, while UNIX domain sockets are used on macOS
Windows 10 supports UNIX domain sockets out of the box - https://devblogs.microsoft.com/commandline/af_unix-comes-to-windows/
Add a compile/runtime option to use UNIX domain sockets on Windows for IPC
The text was updated successfully, but these errors were encountered: