←back to thread

83 points zardinality | 2 comments | | HN request time: 0.418s | source
1. justinsaccount ◴[] No.42197734[source]
> In our scenario of local IPC, some obvious tuning options exist: data is exchanged via a Unix domain socket (unix:// address) instead of a TCP socket

AFAIK at least on linux there is no difference between using a UDS and a tcp socket connected to localhost.

replies(1): >>42198202 #
2. sgtnoodle ◴[] No.42198202[source]
There's definitely differences, whether or not it matters for most usages. I've worked on several IPC mechanisms that specifically benefited from one vs. the other.