Supabase does not cache inside Next.js server component.?

Поділитися
Вставка
  • Опубліковано 2 лис 2024

КОМЕНТАРІ • 20

  • @SchokoMuffinMhmhm
    @SchokoMuffinMhmhm 9 місяців тому +4

    Great Video! For anyone coming across this tutorial now: there's actually a new "unstable_cache" function in the Next v14 which can be used to wrap the supabase call. You can also pass a cache tag as a second parameter in order to revalidate the cache later with revalidateTag.

    • @xreed8
      @xreed8 5 місяців тому

      Thats unstable and my be deprecated in near future

  •  Рік тому +3

    Thanks. This tip has saved me quite a bit of time today. Keep up the good work!

  • @hbela1000
    @hbela1000 Рік тому +1

    very good, thanks.hope more to come on supabase.

  • @fajaralnito6785
    @fajaralnito6785 Рік тому +3

    Hey, how to see the request that being made on the terminal like on the video?

    • @anantapaul3350
      @anantapaul3350 11 місяців тому

      Plz reply

    • @fajaralnito6785
      @fajaralnito6785 11 місяців тому +4

      found it already put this on the next.config.js file
      ```
      logging: {
      fetches: {
      fullUrl: true
      }
      }
      ```

    • @anantapaul3350
      @anantapaul3350 11 місяців тому

      @@fajaralnito6785 thanks

    • @mahmoudtaleb8281
      @mahmoudtaleb8281 11 місяців тому

      this is only working for fetch, not Supabase calls@@fajaralnito6785

  • @junsgk
    @junsgk 4 місяці тому

    Thanks for the video. By the way, there is a function called unstable_cache from nextjs. It seems not working on the supabase environment... could you make a video about this function??

  • @xreed8
    @xreed8 5 місяців тому

    Another option is to just pass Cache-Control through your response header in your Route Handler

  • @xiiEJRAM
    @xiiEJRAM Рік тому +1

    Thhhxx 🔥 , This is so helpful 👏🏻👏🏻

  • @adrenalin.
    @adrenalin. Рік тому

    Very useful video!

  • @osmanakar2507
    @osmanakar2507 Рік тому

    great content 🙌 how can I add "single" to rest api request? I am using the same approach to cache but my request returns array. I only need one row.

    • @junsgk
      @junsgk 4 місяці тому

      .single()

  • @rishiraj2548
    @rishiraj2548 Рік тому

    🙏👍

  • @neoswann2143
    @neoswann2143 6 місяців тому

    Is this still a problem? because i never seemed to encounter it...???