Supervisors: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

3 December 2023

  • curprev 14:1514:15, 3 December 2023Elixirfan talk contribs 2,412 bytes +2,412 Created page with "== Supervisors == A supervisor is a behavior in Elixir that helps in building fault-tolerant systems. It is responsible for starting, monitoring, and restarting child processes, ensuring the stability and resiliency of the system. === Role of Supervisors === Supervisors use a "let-it-crash" philosophy to handle faults. When a child process crashes, the supervisor is notified, and depending on the restart strategy, it can decide how to handle the failure. In Elixir, s..."