In the previous part of this series, we explored named processes.

We saw how registering a process under an atom like :worker provided a stable public handle, separating a service's logical address from the temporary PID of its current process incarnation.

However, a single registered local process name points to exactly one running process:

:worker -> #PID<0.123.0>

Enter fullscreen mode