When an Elixir Registry process restarts after crash, does it recover with registered keys? -
according elixir registry documentation, if registered process crashes, keys automatically removed registry. when registry process crashes , restarted supervisor, recover registered processes' keys or restarts afresh?
the registry process "restart fresh". (as configured in supervisor)
actually, processes registered registry link'ed registry process, check line. means when registry crashes, processes registered exit unless specify other behaviours.
Comments
Post a Comment