Introduction To The Actor Paradigm In Golang

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ก.พ. 2025

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

  • @anthonygg_
    @anthonygg_  ปีที่แล้ว

    ► Join my Discord community for free education 👉 discord.com/invite/bDy8t4b3Rz
    ► Pre order (get 30% off) my Golang course 👉 fulltimegodev.com
    ► Become a Patreon for exclusive tutorials 👉 www.patreon.com/anthonygg_
    Thanks for watching

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

    You are doing a great job Anthony ! Thank you for your time and availability of sharing this information !

  • @anshkumargarhewal8582
    @anshkumargarhewal8582 ปีที่แล้ว +4

    Kudos for 10k Anthony 🎉

  • @farzadmf
    @farzadmf ปีที่แล้ว +10

    Althought you've done a great job for the framework, I was hoping to see the underlying concepts that the framework is based on ("the actor paradigm" and what it is)
    Thank you for the video anyway

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว +2

      Will go more technical

  • @simonced
    @simonced ปีที่แล้ว +3

    in vim, you can keep some lines space at top and bottom by setting the option "scroll offset" to a value like 5.
    example: ":set scrolloff=5"

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

      also type zz for centering the line in the screen

    • @manfrombritain6816
      @manfrombritain6816 ปีที่แล้ว

      @@peterszarvas94 every time i learn a new trick in vim i get a little burst of joy

    • @rauldragu9447
      @rauldragu9447 5 หลายเดือนก่อน

      In my neovim v0.10, scrolloff doesn't seem to work anymore for this purpose.
      But you can also use ctrl+e/ctrl+y to scroll line by line. You can also use zz to center vertically the line the cursor is on, zb to move the line the cursor is on to the [b]ottom of the screen, and zt for the [t]op. The z* command also respect scrolloff

  • @skinniepuppie
    @skinniepuppie ปีที่แล้ว +9

    15:28 Instead of adding newlines at the end of the file to center things in VIM. Just hit “z” twice.

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว +6

      Oof, thanks my man! Life saving info. ❤️

  • @AxioMATlC
    @AxioMATlC 5 หลายเดือนก่อน

    I really wish you take on more TDD design so I know how to test it. I love to start with testing because tests are needed no matter what, and they are harder to write if you never had tests in mind and realize a lot of refactoring has to happen to just make it testable

  • @eswarnichtsmehrfrei
    @eswarnichtsmehrfrei ปีที่แล้ว +3

    you are best actor

  • @wonbyte
    @wonbyte ปีที่แล้ว

    This man is a beast

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

    非常棒的视频,我很喜欢这种教学风格!

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

    Anthony you’re a homie

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

    finaly, VIM!!!

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

      Sorry I let you down. Im back.

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

      If possible can you publish your Vim setup video or if a doc which we can follow?

  • @lawrencekatuva8735
    @lawrencekatuva8735 ปีที่แล้ว +2

    Am working on a payment gateway and am consdering golang only if I'll get a good actor model implementation. How can I tie any actor to reference which I can use to access it later in a diffrent context.

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว

      You have the PID when spawning one. Use that PID.

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

    What's difference between using framework and using native channels?

  • @chudchadanstud
    @chudchadanstud 8 หลายเดือนก่อน +1

    instead of using switch cases why not take advantage of state pattern and turn all those cases into objects? You can just send an object with a run method and when it's dequeued from the inbox we call the run method?

    • @anthonygg_
      @anthonygg_  8 หลายเดือนก่อน

      Well, hows that going to work over the wire?

    • @anthonygg_
      @anthonygg_  8 หลายเดือนก่อน

      Locally that would work great

    • @chudchadanstud
      @chudchadanstud 7 หลายเดือนก่อน

      @@anthonygg_ In C/C++ you would use ABIs (Application Binary Interfaces). Not sure about Go, doesn't't Go have compiled binaries designed to interop?
      Your destination could simply have this binary as some form of contract.
      Another method is to have a TCP actor do all that.
      But you make a good point either way. Sometimes a simple solution is best.

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

    In terms of usage, this solution is a bit closer to an async queue system like rabbitmq, but the nice trick is that holywood just spawns a new process instead of communicating over the network, and on the other hand, there is no way to send to the consumer of another team, for example. Am I right? Thanks for the video

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว

      You mean over the network?

    • @mti2fw
      @mti2fw ปีที่แล้ว

      @@anthonygg_ I mean communication is between golang and OS instead of AMQP or other network protocol

  • @rmkohlman
    @rmkohlman 11 หลายเดือนก่อน

    Awesome

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

    Thankx for your videos, they are amazig! +1 sub from me

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

    Thanks for the video! What plugins do you use for autocomplete and errors colored?

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

    Does it even make sense to call `e.Send` in a goroutine? Since it's only sending a message and not actually handling it, right?

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

      Correct doesnt make sense, but just want to show the safeness of it in case you find a usecase to actually do it in a goroutine

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

    what is the difference between using (traditional locks , channels) and this actor? from my perspective its only handling race conditions, please correct my understanding here

  • @nagabhushanbaddi2528
    @nagabhushanbaddi2528 ปีที่แล้ว

    So, is it a PUB-SUB system like redis or kafka?

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

    dope

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

    i purchase the course but why there is no content

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว

      The content is gradually coming over the month of april. By the end of april all will be available for your lifetime

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว

      Join the discord I will add you to the course channel

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

    It would be better if you showed the native implementation and not some wrapper around it.
    Although I really like this pattern, I found out that some less experienced developers find it confusing.
    Another point, instead of sending objects, you can pass down behavior (functions) following the "Don't communicate by sharing memory, share memory by communicating." proverb.
    Also, being a blazingly fast is an outright lie. It is 10x times faster comparing to just having a struct with a receiver that does use a mutex in order to ensure thread safety

    • @peterszarvas94
      @peterszarvas94 ปีที่แล้ว

      it is still faster though, right? go is blazingly fast itself, i dont see that as a lie

  • @atticus_foust
    @atticus_foust ปีที่แล้ว +2

    You should make a 2d game with this use case! If you have time**

  • @thefrazz
    @thefrazz ปีที่แล้ว

    At this point the SetState message is not working for me at all with exactly your code.
    Will erase the whole project and try again.

  • @definitelynotrohan
    @definitelynotrohan ปีที่แล้ว +3

    yay vim diesel

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

      LMAO! This is it. That quote is mine now. Thanks buddy

  • @thefrazz
    @thefrazz ปีที่แล้ว

    helloworld example with send worked - trying the code-along version again.

  • @dranon0o
    @dranon0o ปีที่แล้ว +3

    So basically, we're doing a an IPC (spawning a process and communicate) + a reducer based on type :p
    Pretty nice

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

    what colour scheme is that please?

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว

      Gruvbox

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

      @@anthonygg_ sorry to ask again, but do you have a link to it, as the normal gruvbox looks a lot different :(

  • @mzerone-g6m
    @mzerone-g6m ปีที่แล้ว

    The next episode make go work on beam 😂

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

    routines leak when testing the example tcpserver....

    • @anthonygg_
      @anthonygg_  ปีที่แล้ว

      Doesnt matter, its an example not a copy paste thing. Its an example to give you an idea. And if you want, make a pr and fix

  • @fabricioaraujo7642
    @fabricioaraujo7642 ปีที่แล้ว +2

    Golang basically is a python who scales better 😅😊

  • @larrasket
    @larrasket ปีที่แล้ว +2

    Now try Emacs

  • @jonnyenglish1041
    @jonnyenglish1041 ปีที่แล้ว

    anthony I would be tempted to sign up to fulltimegodev is it were a reasonable monthly fee.

  • @mzerone-g6m
    @mzerone-g6m ปีที่แล้ว +1

    Elixir - erlang