Can someone explain the structure of a Pid (Process Identifier) in Erlang?

后端 未结 5 1961
走了就别回头了
走了就别回头了 2020-11-28 02:40

Can someone explain the structure of a Pid in Erlang?

Pids looks like this : , e.g. <0.30.0> , but i would like to kno

5条回答
  •  一向
    一向 (楼主)
    2020-11-28 03:23

    The PID refers to a process and a node table. So you can only send a message directly to a PID if it is known in the node from which you do the call.

    It is possible that this will work if the node you do the call from already knows about the node on which the process is running.

提交回复
热议问题