if i want to use GenRegistry library (GitHub - discord/gen_registry: Simple and efficient local Process Registry) in production. all erlang nodes are connected in a ring. all nodes are set connect_all false and manually connected in hash ring.and we have to use Send function to send mesaage to pids in different different nodes. i will send this local node to ets table in distributed systen by using hashing ans :rpc.call.
GenRegistry registered pid with id in local node ets table and many users register their pid with id in different different nodes. now tell me how Send will send message to another node pid because, it is possible to for two pid be same in different different nodes.
now please solve this problem?