How to make your Node.js API 5x faster!

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ก.ย. 2024
  • In this video I demostrate how to use the github.com/mco... module to increase the req/s of Platformatic DB by 5x, while reducing the latency to 1/3. Amazing? You can implement it too!

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

  • @programmer-network
    @programmer-network 11 หลายเดือนก่อน +1

    Thank you, Matteo. Will try to implement this in my programmer network Fastify API.
    Cheers man

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

    Always happy to see these videos!

  • @ankit8268
    @ankit8268 7 หลายเดือนก่อน +2

    But you don't have just one api in your web app, if there are 100 apis how many will overlap, moreover the input to the query also need to be same for this to work right, this can decrease the performance as well. Isn't it?

  • @VasuRangpariya
    @VasuRangpariya 6 หลายเดือนก่อน +2

    Hey Matteo Collina I have one question which package should we use for caching API. should we need to use async-cache-dedupe or fastify-caching ? because both packages ends up with cahcing data into redis or any in-mem cache

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

      the latter is lower level and will deduplicate requests.

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

      @@adventuresinnodeland I am not getting can you please describe I am bit confused and by the way you guys are doing great work

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

      @@VasuRangpariya use async-cache-dedupe

  • @ted3309
    @ted3309 10 หลายเดือนก่อน +2

    Good video! Also, can you point or say where you're looking at when you're using "htop" or other fancy tools, because It's hard to follow when you see a tool for the first time.

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

    Great new module!

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

    Thanks for share this is nice video, still watching videos regarding evolving of Platformtic DB, can't wait to find a project allowing me to my hands on it :) Have you also thought of cache invalidation? Something like creating "relationships" between queries and mutations saying "Hey, if this mutation is running with this movie ID, clear query related object from cache"

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

      It’s in the roadmap and supported by async-cache-dedupe, we just need to wire it with Platformatic DB.

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

    thanks mattteo for this

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

    Nice video, Thank you so much

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

    Thank you so much, One question, So we should use cache in every query to database, right ?

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

      Yes, at least for the one that fetched data.

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

      definitely not, choose wisely based on profiling and db stats ideally during stage testing

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

    Can we have the link to the repo of that platformic db's github repo or access to the code !

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

      Here is the file I’m showing in the video github.com/platformatic/platformatic/blob/main/packages/sql-mapper/lib/cache.js

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

    Hit the Like in advance, thank you Matteo!

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

    Thanks

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

    Does this only work with promise.all? How about if I send same request out of promise.all? will that also return from cache ?

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

    wow