Horde.Registry supports `keys: :duplicate`
For feature parity with Elixir's Registry, Horde.Registry needs to support keys: :duplicate.
@derekkraan I was thinking, can we replace the keys_#{registry} ETS by an actual Elixir.Registry on each node, this can lead to fewer updates to keep this API up to date with the native version?
It would be really nice! But unfortunately Elixir.Registry only works on local pids.
I recently looked at riak_core and partisan more deeply and I was wondering if this might be relevant instead of reinventing the wheel. Since its kind of battle tested and enables redundancy and redistribution of data on cluster topology changes coupled with a simple ets.
@Shikanime can you elaborate?