标签: erlang
在将一个客户端参数结构决定为一个OTP gen_server时,是否需要将Pid和Node name插入参数结构中?
OTP
Pid
Node name
如果有一个远程pid,是否可以将pid转换为node name?我的意思是完整节点名称,例如"emacs@yus-iMac.local".
pid
node name
"emacs@yus-iMac.local".
答案 0 :(得分:4)
调用node(Pid)将返回Pid所在节点的名称。
node(Pid)
答案 1 :(得分:3)
Can someone explain the structure of a Pid in Erlang?
How do I found out which node an erlang process is running on?