Building a gRPC Service in Golang: Unary RPC (Tutorial)

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

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

  • @LeonarEuler-iz5di
    @LeonarEuler-iz5di 11 месяцев назад +1

    Great Video. Very clear explanation and helpful!

    • @MarioCarrion
      @MarioCarrion  11 месяцев назад

      Thanks, I'm glad you found the video useful.

  • @annusingh4694
    @annusingh4694 Год назад +1

    Concise & so useful, thank you Mario for such high quality videos.

    • @MarioCarrion
      @MarioCarrion  Год назад +1

      Thanks for watching. I'm glad you're finding the content this useful.

  • @Peter-xn9bk
    @Peter-xn9bk 2 года назад +5

    Yee, looking for your video everyday. Awesome learning courses

  • @Jonas-mi9yj
    @Jonas-mi9yj 2 года назад +2

    A system design series on Microserive Architecture with Nats for messaging would be awesome. I have recently transformed my gRPC services to use Nats for inter-microserivce communication since Nats offer request-response, pub sub and also streams.

    • @Messi_jtr
      @Messi_jtr 2 года назад

      We recently migrated from ants to Kafka because Kafka is more reliable

    • @MarioCarrion
      @MarioCarrion  2 года назад

      Hey Jonas, I'm going to spoil future videos but I typically don't use direct communication between services, most of the times I use a message bus (usually Kafka) instead; however in cases where 1) performance is needed and 2) it's a server-side API I lean towards gRPC; with all of that being said, I'm going to look into NATS, it sounds interesting.

  • @AmitGupta-ng5rs
    @AmitGupta-ng5rs 2 года назад +1

    Great Video Mario! I was amazed by your DEV env. Would love to see a video tutorial on that too. Is that oh-my-zsh?

    • @MarioCarrion
      @MarioCarrion  2 года назад

      Yes, it is. I'm using Neovim I have a short post covering the configuration: mariocarrion.com/2022/03/26/neovim-lua-init.html

  • @frankemeli7505
    @frankemeli7505 2 года назад

    Nice stuff. But it would have been easier to follow if you did not use this weird editor. It's was hard for me to tell which file you were in

    • @MarioCarrion
      @MarioCarrion  2 года назад

      Yes, if you haven't seem vi/vim/neovim before it could be hard to follow. Using your feedback I updated my configuration to make it much more explicit how I move between opened files. Cheers.