Supervisors & Gen Servers in Elixir

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 พ.ย. 2024

ความคิดเห็น • 11

  • @BukovTervicz
    @BukovTervicz 4 หลายเดือนก่อน +2

    INSANELY clear and helpful! Thank you

    • @ElixirDrops
      @ElixirDrops  4 หลายเดือนก่อน +1

      Thank you. Glad you found it helpful!

  • @indiaengineering
    @indiaengineering 5 ปีที่แล้ว +1

    Please cover Mint Http Client and Auth with Keycloak if possible!

    • @ElixirDrops
      @ElixirDrops  5 ปีที่แล้ว +1

      haha, that sounds very involved!

    • @indiaengineering
      @indiaengineering 5 ปีที่แล้ว

      @@ElixirDrops oh yeah...just cover whatever you find interesting in elixir world e.g. LiveView. We are big fans of your youtube channel :)

    • @DouglasWright
      @DouglasWright 5 ปีที่แล้ว

      arpit shah thank you. Will do. Live View could be interesting!

  • @mrct
    @mrct 2 หลายเดือนก่อน

    Hey! Thanks for your video! Please correct me if I'm wrong: Elixir is not just a language but a new programming paradigm focused on managing these processes using a server-client architecture to monitor and send messages on async executions, correct?

    • @ElixirDrops
      @ElixirDrops  2 หลายเดือนก่อน

      Yes, Elixir is a language written in Erlang. This language was written for telephony and runs on the Beam virtual machine. A lot of things in Elixir can be processes and messages, but a lot of what I’ve seen in production is mostly just modules and functions.

  • @holosimp9778
    @holosimp9778 4 ปีที่แล้ว

    Great video! Had a quick question though, I was wondering why Process.send_after doesn't work in Tasks/GenServers when they are put into Supervisors. I couldn't find an answer to this anywhere.

    • @DouglasWright
      @DouglasWright 4 ปีที่แล้ว

      Can you share a link to example code?

    • @holosimp9778
      @holosimp9778 4 ปีที่แล้ว

      @@DouglasWright pastebin.com/kda1EvZY
      rough code, but basically what happens is loop will be called once because of the start_link, but it will not call itself again since it doesn't seem to get the message that it sends to itself.