What distributed process registries are available for Erlang?

后端 未结 3 710
小蘑菇
小蘑菇 2021-02-08 01:11

I\'d like to compile a reasonably complete list of distributed process registry libraries for Erlang.

Such libraries need to support basic operations like register

3条回答
  •  时光说笑
    2021-02-08 01:59

    I would argue that riak_core is such. I use its partition ring + consistent hashing to find the node, together with a local gproc instance to find the exact process. Thus I get very fine balance between fault tolerance, availability and speed.

提交回复
热议问题