SSR-ing React with Go isn't fun

แชร์
ฝัง
  • เผยแพร่เมื่อ 27 เม.ย. 2024
  • An update on how I'm SSR-ing React using Golang. Whilst the performance is fantastic there are bottlenecks that occur under load. For now, NextJS still wins!
    Source code: github.com/TurnCoffeeIntoCode...

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

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

    Looks pretty cool so far! I'm going to take a look at the repo and see what I can do with that, keep the videos coming! 🙌🏼

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

      Please do! I don’t have enough time to dedicate to this at the moment 😅 ideas and help is welcome!

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

    Been waiting for this! Cool!

  • @prashlovessamosa
    @prashlovessamosa 28 วันที่ผ่านมา +1

    can you teach us gRPC or else anything that you use in production stuff like building microservices btw
    your search engine lectures are too helpful I learnt a lot.

    • @coffeeintocode
      @coffeeintocode  28 วันที่ผ่านมา +1

      I’ve got done gRPC but I do want to explore it! Microservices though…..yes sir 🫡

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

    looks very interesting, love to see with vue

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

      I don’t know Vue. I assume it has a similar renderToString() api though?

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

    i think it's because of how railway works with node and golang, maybe they use v8 isolate for node and docker for golang, so it's the reason why the performance is so different AND SO IMPORTANT THAT Nextjs doing hard prefer to ssg IT MEANS THAT YOUR CODE IS SSG BY DEFAULT. so that's maybe a reason for this too!!!

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

      Interesting! Can you message me on Twitter about this, I’ve got no idea about Railway and how it interacts with Node/Go? I thought it was just containers 😅

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

    Rendering react still requires the js runtime, and it's just not the best idea to embed it within go. I tried with rust (deno embedded), lots of pain to move on 😂

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

      Quickly coming to that conclusion myself! It’s fun though 😂

  • @prashlovessamosa
    @prashlovessamosa 10 วันที่ผ่านมา

    4 weeks nothing posted

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

    Damn the performance difference is actually super significant just at a glance. Thanks for the proof of concept dude! This is awesome.

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

      Yeah I was blown away as well. For low requests the perf was incredible but a couple of hundred concurrent requests and it fell off a cliff. There will be a solution, I just don’t know it yet 😂

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

    Take a look at EHTML

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

      Will do thanks for the suggestion!