The Ultimate Guide to Gleam Concurrency

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

Комментарии • 91

  • @IsaacHarrisHolt
    @IsaacHarrisHolt  5 месяцев назад +3

    ERRATA:
    05:43 - The fan out line should read `|> list.map(fn(email) { task.async(send_email(email)) })`. It's missing the `task.await`! Thanks @josephlyons3393 for pointing this out

  • @jormarma1976
    @jormarma1976 6 месяцев назад +45

    Please! More Gleam content of this quality and clarity. It's awesome, thank you!

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад +4

      Absolutely! Working on it :)

    • @lpil
      @lpil 5 месяцев назад +3

      @@IsaacHarrisHolt I'm excited!

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +1

      Lustre next! Hayleigh is gonna be very pleased

  • @HostilePride
    @HostilePride 5 месяцев назад +11

    Gleam has been my introduction to the BEAM and a lot of functional concepts, and video's like this help SO MUCH! Trying to see problems through a non-Object-Oriented lens has been interesting, and a lot of your videos have been very useful and easy to understand. Thanks for the time you put into making your content.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +1

      I'm just really glad I'm able to be helpful! Thanks so much :)

  • @danilodjokic5303
    @danilodjokic5303 5 месяцев назад +15

    Gleam is looking more and more like my next Advent of Code language

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      Sounds good, but why wait until December 👀 and why not try it out on some real projects?

    • @danilodjokic5303
      @danilodjokic5303 5 месяцев назад +4

      @@IsaacHarrisHolt I'm currently doing a larger personal project in Go and I'm trying to actually get it done and avoid the shiny object syndrome.
      I'm still not sold on whether I should look into Gleam or Elixir next, but your videos are very clean and convincing

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      Fair enough! Good luck with the project :)

    • @abuk95
      @abuk95 2 месяца назад

      Why? You don't need more than one process for AoC

    • @danilodjokic5303
      @danilodjokic5303 2 месяца назад

      @@abuk95 I just commented on this particular video. More so due to the syntax than the the concurrency model. But in AoC I did solve some problems with concurrency (probably should have used a better algorithm though)

  • @lankymoose1831
    @lankymoose1831 5 месяцев назад +9

    "if the supervisor can't restart its child for whatever reason, it will kill its other children, and then itself" 🤣🤣

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      Sounds like a, uh, pretty normal Sunday to me

  • @Metruzanca
    @Metruzanca 6 месяцев назад +10

    Another great gleam video. Everytime, I wanna learn and use gleam more.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад +2

      Do it! It's a great language. I'll be doing more Gleam tutorials in the future too :)

  • @Mankepanke
    @Mankepanke 5 месяцев назад +13

    I think you need to slow down a bit because I can't keep up. I barely have time to read the code between each slide, and on top of that I need to also listen to what you are saying and then find the piece of the code you mean.
    It's interesting and all, but at some point I started to zone out because it just became a stream of words... "To start the supervisor call supervisor start and the supervisor starts and returns a supervisor subject that ..."
    I'll rewatch again later to see of it sticks better that time.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +3

      Understood! Thanks for the feedback

    • @sosquite8866
      @sosquite8866 5 месяцев назад +2

      I have the exact same issue, i think maybe keeping the whole block shown while just highlighting the part you are talking about might do the trick. And yes i guess slowing down a but may also decrease the "stream of words" effect

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      I do try and highlight where possible! Sometimes that's more difficult though, but I'll do my best :)

    • @Mankepanke
      @Mankepanke 5 месяцев назад +2

      I hope it didn't come off as too harsh. I enjoyed the content, and your enthusiasm for the content really makes me want to learn too!
      I'm subscribed now and look forward to the next installment!

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      Thank you! And not harsh at all, don't worry! It's fairly common feedback, but I also get a lot of feedback from people who find the quick pace refreshing

  • @josephlyons3393
    @josephlyons3393 5 месяцев назад +1

    Great video! I've been wanting a video on exactly this - thank you! Also, small thing, but at 5:51, you can shorten the code a tiny bit with `list.map(send_email)` and skip the anonymous function wrapper.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад

      You're right! But mostly because I actually made a mistake on that line and it should read `|> list.map(fn(email) { task.async(send_email(email)) })` (wrapped with `task.async`)

  • @lpil
    @lpil 5 месяцев назад +7

    Time to make Isaac head of GleamVideo

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      I believe the official term is The Glambassador

    • @lpil
      @lpil 5 месяцев назад +3

      @@IsaacHarrisHolt I knew you were the right person for the job

    • @andredasilva6807
      @andredasilva6807 5 месяцев назад +2

      @lpil thanks for your hard work an this amazing language :)

    • @lpil
      @lpil 5 месяцев назад

      @@andredasilva6807 thank you!

  • @andredasilva6807
    @andredasilva6807 5 месяцев назад +1

    keep up thr amazing gleam videos. i started using gleam and its amazing. the lsp need some work, but its on its way to be a fantastic language

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад

      Thank you! I've got more in the works, don't worry

  • @SnowDaemon
    @SnowDaemon 6 месяцев назад +3

    Another good Gleam video,
    Thanks Isaac

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад

      Thank you! I hope you found it helpful

  • @shivrajnag12
    @shivrajnag12 5 месяцев назад +1

    Hi Issac, would love to see a tutorial on REST API CRUD with authentication and SQL DB

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +1

      I'll be looking into this sort of thing with Wisp at some point in the future!

  • @eidiazcas
    @eidiazcas 3 месяца назад

    I really love gleam, the tasks to avoid function coloring *MUAH, beautiful

  • @jp2kk2
    @jp2kk2 6 месяцев назад

    man, i always loved erlang, its syntax, and its concurrency, but never used it on prod. This looks so promising!

  • @gro967
    @gro967 2 месяца назад

    Gleam looks like a nice language to write some microservices in 👌

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  2 месяца назад

      What's nice about Gleam is that you don't really need microservices! Most of the benefits you get from them, like asynchronous operations and easy scaling, are already taken care of by the BEAM VM

  • @ryzh6544
    @ryzh6544 6 месяцев назад +1

    Well, that's a tough one :)
    I'll come back after diving into the Learn OTP w/Gleam repo and the docs.
    p.s. why the code highlighting is so weak?. Just copy paste from the vscode and you'll get the colors!

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад +1

      Awesome!
      And the code highlighting isn't great because Gleam isn't supported by the library used yet. I use vim and copying the text from there doesn't copy the colours, so sadly that doesn't work!

    • @ryzh6544
      @ryzh6544 5 месяцев назад

      ​@@IsaacHarrisHolt ​ hi!
      7:33 - 8:12
      I don't really understand why actor.call() works when we pass to it a record of "type Message" as a second argument, while the second argument of actor.call() must be a "fn(Subject(b)) -> a"... but it works and even can pass additional message record's arguments...
      p.s. record of the Message is treated as a function?.. still don't get it.
      p.s.s. Ok so we are using a function capture to capture the message constructor and if need we pass the additional arguments so the only thing to pass to a constructor left is a new subject which will be added automatically (so we write placeholder) and will be used to send the result to a client. And the result type is declared by the type of reply_with: Subject(***) field of the Message record.
      p.s.s.s hmmm seems I got it, don't I? brain hurts :()()()( Your video was really helpful to bring all the info about the actors together... I would like to believe :)

    • @ryzh6544
      @ryzh6544 5 месяцев назад

      ​@@IsaacHarrisHolt Yo! As expected, your video was very useful. After and while reading the repo and the documentation, it helped a lot to understand what was going on. Especially in trying to understand how the whole actor loop works (Message type, handler, actor.send, actor.call). Thanks a lot!

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад

      @@ryzh6544 nice one! I'm glad I was able to help

  • @rallokkcaz
    @rallokkcaz 5 месяцев назад

    Do you use GenServers in Gleam? I'd love to see a video on that.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +2

      GenServers in Gleam are called actors! They're covered in detail here :)

  • @AhmadVisuals
    @AhmadVisuals 2 месяца назад

    This channel deserves a SUBSCRIBE!😉

  • @Techonsapevole
    @Techonsapevole 5 месяцев назад +1

    Thanks the video I was wainting for

  • @aLfRemArShMeLlOw
    @aLfRemArShMeLlOw 6 месяцев назад +3

    Amazing video as usual.

  • @Michael-kw1zv
    @Michael-kw1zv 6 месяцев назад

    Nice video. I believe I understand the concurrency model from this and other content, but I struggle to find project ideas where I can make effective use of it. Any good ideas for putting these into action?

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад

      It'll depend on the project, but you can use tasks for asynchronously interacting with APIs or running other background jobs. Actors are good for queued work or holding shared state

    • @bcpeinhardt
      @bcpeinhardt 6 месяцев назад +1

      The build your own redis challenge is free this month on codecrafters in Gleam :) it uses the glisten tcp server, which is built on gleam_otp and uses gleam actors in it's APIs. It's a fun practical use case, plus because BEAM concurrency is really good you pass the first three stages just by setting up the server, it's pretty neat. If you get stuck, Louis (the gleam language author) streamed some videos doing the challenge on twitch and youtube.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад

      Yes, this is a fantastic way to learn Gleam!

  • @TheHTMLCode
    @TheHTMLCode 6 месяцев назад +1

    Awesome as always!

  • @costathoughts
    @costathoughts 6 месяцев назад +2

    this is really similar with Akka Actor Model Approach

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  6 месяцев назад

      Interesting! I'm not a JVM person, but Akka looks cool

  • @devyb-cc
    @devyb-cc 5 месяцев назад +1

    this language is beautiful

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +1

      I know, right!

    • @devyb-cc
      @devyb-cc 5 месяцев назад +1

      @@IsaacHarrisHolt i am also amazed by wathing louis pilfold 1hr video making backend with gleam, then your video dropped out at the perfect time lol. damn, the syntax is really neat 👌

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад +1

      @@devyb-cc awesome!

  • @logemii
    @logemii 5 месяцев назад +1

    god i love this

  • @MtthwBrwng
    @MtthwBrwng 6 месяцев назад +1

    Great Video!

  • @uchennaofoma4624
    @uchennaofoma4624 5 месяцев назад

    Amazing video

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад

      Thank you! I hope you found it helpful :)

  • @anotherelvis
    @anotherelvis 3 месяца назад +1

    Great video, but please show the code snippets for a longer time before you switch to memes. The video is a little hard to follow at normal speed.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  3 месяца назад +2

      Understood! I've started slowing things down in my more recent videos :)

  • @lazyh0rse
    @lazyh0rse 5 месяцев назад

    Gleam seems promising, but honestly, these days I have been wondering, why people seem keen on performance? I don't get it. Even the most famous youtubers at most get 1000 views per second, which is much less than what python slowest framework can handle. You have caches, algorithms, etc... all of which could speed up the framework even more.
    So it's really pointless. I would use gleam only if there's a benefit that I don't get with python, otherwise, I won't jump ship.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад

      Gleam doesn't really give you much performance over Python. What it does give you is reliability. With Python, if one of those 1000 requests per second crashes (not with an exception, but properly crashes), every other request in flight being handled by that instance would fail.
      With Gleam and other BEAM languages, if one request crashes (e.g. with a panic, like in the video), only the process handling that request goes down. The rest of the application can continue.
      Also, the BEAM makes it nearly trivial to distribute across multiple machines in multiple regions, so you can easily keep serving traffic if a whole data centre goes down. Python and other languages need additional overheard like orchestration tools to make that happen.

    • @rumble1925
      @rumble1925 5 месяцев назад +2

      The beam vm allows you a completely different paradigm that is very suited to the web. Like OP says, you can crash a process without affecting everything else. Also from experience with elixir, you don't need to bring in extra libraries, servers and languages to do web things. You don't have to reach for redis, nginx, managing cron and bash scripts, crash recovery with upstart... you don't have to orchestrate all these things across many languages, it's all baked in with OTP.

    • @lazyh0rse
      @lazyh0rse 5 месяцев назад

      @@rumble1925 thanks, i think having all in one experience could justify using it.

  • @sunofabeach9424
    @sunofabeach9424 5 месяцев назад

    immutability and async just don't mix man. I want to mutate my state from 16 threads so much it's unreal

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  5 месяцев назад

      I'm reeeally hoping this is sarcastic 😅

    • @sunofabeach9424
      @sunofabeach9424 4 месяца назад

      @@IsaacHarrisHolt yeah it is... although lack of mutability isn't always a good thing

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  4 месяца назад

      @@sunofabeach9424 agreed. It depends what you're trying to achieve

  • @caju2991
    @caju2991 Месяц назад +1

    PLEASE, DON'T SELL AN GLEAM COURSE LIKE THE OTHERS, I'M NEED GET MY LUNCH. For a more democratic web with easy access to technology, that people can change their lives for the better.

    • @IsaacHarrisHolt
      @IsaacHarrisHolt  Месяц назад +1

      Don't worry! If I do ever make a Gleam course, it won't have any information that isn't available elsewhere on my channel - it'll just be more structured.

    • @caju2991
      @caju2991 Месяц назад

      @@IsaacHarrisHolt thanks a lot.