Make your queries 43,240x faster

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ต.ค. 2024

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

  • @mikelCold
    @mikelCold 4 หลายเดือนก่อน +4

    Amazing explainer for something so basic as indexes. I'm always surprised how can people learn this so late.
    If there's another video I would recommend going into multiple column indexes too.

  • @TheBlackManMythLegend
    @TheBlackManMythLegend 4 หลายเดือนก่อน +6

    I used to work at EDF (electricite de France ) and we performed for PL/SQL script to update the 40 millions of line of customer to make the database faster. Kinda forgot about all of that. But that was satisfying to do.

  • @damnnn.
    @damnnn. 3 หลายเดือนก่อน

    SUPABASE is AWESOME. The Dev Team is teaching the product, how it should be. I am new to Supabase and these videos are very useful for me. If it's not important to you, try being overwhelmed with textwall documentations and useless videos.

  • @dshukertjr
    @dshukertjr 4 หลายเดือนก่อน +3

    Loving the quote at the end!

  • @jitxhere
    @jitxhere 4 หลายเดือนก่อน +4

    Thanks excited to know more about Indexes.

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

    Perfectly explained!

  • @aLfRemArShMeLlOw
    @aLfRemArShMeLlOw 4 หลายเดือนก่อน +32

    42069x faster

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

      Missed opportunity! 😂

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

    Please explain how the pgvector index works

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

    Can you please update the docs for when to use which distance operator in HNSW and IVFFlat vector indexes. Currently it is unclear weather to use cosine distance, Euclidean distance or negative inner product. Also I would love to have detailed videos/blogs/docs on which embedding model to use for how many words(tokens) of data and also on hybrid search as well.

    • @Dom-zy1qy
      @Dom-zy1qy 4 หลายเดือนก่อน +1

      Tbh this isn't really something you should be looking at the supabase documentation for.

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

    Fantastic video!

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

    When I tried to index a table, it did improve the query time, but only by a couple of seconds. It was noticeable but not as much as in this video. Does it have anything to do with my supabase plan? I'm using the free tier.

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

      How big is your dataset? In the video he's dealing with 10M entries

  • @laugedyret
    @laugedyret 4 หลายเดือนก่อน +2

    Nice, thanks!

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

      Glad you enjoyed it! 🙌

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

    maybe a noob question but does the advantage of the postgres query planner also work when I use it from the client side like in flutter? like in 08:05

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

    Nice one jon!

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

    Incredible! thanks

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

    In this video, the Explain Analyze tool reported a duration of 3 ms for the first query with username and is_active, and 0.02 ms for the second query with is_active and username. Can you explain why there is such a difference?

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

      I would guess that either the machine is running multiple threads and the thread got swapped to inactive for 1 ms or that it cached the result from the first one, so it already knew the answer for the second one (because it processed it as the same query)

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

    will this index will work with iLike queries?

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

    very didactic

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

    Hot Damn!

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

    I left you database service , just because you don't have the query rows count features for the application codes . You have only in SQL but not in dart , javascript or any other languages

    • @KieranCrown
      @KieranCrown 4 หลายเดือนก่อน +3

      You can utilise DB triggers and functions to update the count and query it in the frontend with ease

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

      You can get the row count using the count option: supabase.com/docs/reference/javascript/select
      Also we have count() aggregate function option for counting rows of a referenced table: supabase.com/blog/postgrest-aggregate-functions#the-basics-of-aggregate-functions