gRPC + ProtoBufs in Golang | Protocol Buffers | gRPC | Golang

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

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

  • @naineelsoyantar
    @naineelsoyantar 9 месяцев назад

    literally the best grpc explainer out there! Great work sir!

  • @AwakeningofAI
    @AwakeningofAI 3 года назад +2

    been waiting for this mate. Excellent.

  • @victorjonah9975
    @victorjonah9975 3 года назад

    I have been waiting for you to explain this better. Thank you!

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

    I never seen explanation about grpc implementation based on go lang in web.Great work Sriram!

  • @vardhaman24
    @vardhaman24 3 года назад

    Great. Enjoying the live coding of every thing. Waiting for more..

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

    Nice, thank you. It would be great to see streaming straight from mongo instead of prior loading mongo response to a slice and then streaming from it, and in bidirectional streaming getting requests and responses interlaced as some requests may get response before next request has even been made, if that makes sense. Anyway thanks for sharing this.

  • @jeet-smokey
    @jeet-smokey 2 года назад

    Very good tutorial..!!!

  • @vaibhavgupta5707
    @vaibhavgupta5707 2 года назад +1

    the starting diagram is wrong kindly check it show request response arrow wrong side

  • @RahulAhire
    @RahulAhire 3 года назад

    I'm not aware of this concept but want to know what are its application in grand scenario

    • @manosriram
      @manosriram  3 года назад

      This solves the same problem REST api does, but in a faster and organized way. But, gRPC isn't widely adopted as much as REST is.

  • @karthikb6199
    @karthikb6199 3 года назад

    dude which is the editor your are using ??

    • @manosriram
      @manosriram  3 года назад +1

      I’m using Alacritty with Vim

  • @manjutengale
    @manjutengale 3 года назад

    can you explain abt rate limiter and circuit breaker concept ?

    • @manosriram
      @manosriram  3 года назад +1

      Sure, will try to do a video on that

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

    I need a c++ client

  • @karthikb6199
    @karthikb6199 3 года назад

    protoc pro/test.proto --go-grpc_out=:. --go_out=:.
    is not generating any stub ,any possible reasons

    • @manosriram
      @manosriram  3 года назад

      I might have generated the stubs, but it might have been in a different path than expected. Are there any errors?

    • @karthikb6199
      @karthikb6199 3 года назад

      @@manosriram I got the stubs,Thank. you