# Unix domain sockets Projects at AI Tinkerers

> Canonical HTML: https://aitinkerers.org/technologies/unix-domain-sockets
> Markdown URL: https://aitinkerers.org/technologies/unix-domain-sockets.md
> Technology record last updated: 2026-07-30T03:57:50Z
> Generated: 2026-09-21T16:36:26Z

Unix domain sockets (UDS) enable high-performance interprocess communication (IPC) on a single operating system kernel.

Unix domain sockets (UDS) facilitate efficient, low-latency interprocess communication (IPC) exclusively within a single operating system kernel. Unlike network sockets (e.g., TCP/IP), UDS bypasses the network stack, operating directly in the kernel's memory. This direct path significantly reduces overhead, offering performance advantages of up to 2x over loopback TCP for local communication. UDS supports both stream (SOCK_STREAM) and datagram (SOCK_DGRAM) communication, mirroring network socket types but utilizing file system pathnames (e.g., `/tmp/my_socket`) or abstract names for addressing. They are ideal for local services requiring high-throughput, secure IPC, such as communication between a web server and a local caching service, or between microservices on the same host.

- Official technology site: https://man7.org/linux/man-pages/man7/unix.7.html
- Public AI Tinkerers demos and talks: 0
- Result page: 1 of 1

## Recent Public Talks and Demos

No public projects are currently indexed for this technology.
