“Sequential table scan" is a very nice and helpful description
@JonMeyers8 ай бұрын
It makes a lot of sense!
@adebiyial8 ай бұрын
@@JonMeyers Yes, it does, particularly because it helps me picture how slow some operations can be due to that.
@whoman79308 ай бұрын
That end gave me a good giggle 😆
@Karnadagan8 ай бұрын
yeah, it was so cool!
@timondalton87314 ай бұрын
Super clear explanation. Thank you
@letopizdetz8 ай бұрын
I need to brush up on multicolumn index. thanks for reminding me
@JonMeyers8 ай бұрын
We have another video coming soon specifically focused on multi column indexes and the differences between that and a covering index! 👍
@mrrolandlawrence8 ай бұрын
multi column indexes and indexed views are the way!
@JonMeyers8 ай бұрын
Videos coming soon on both of these!
@eleah26658 ай бұрын
Cool. Thanks Jon, Sincerely, Ehd
@JonMeyers8 ай бұрын
Glad you enjoyed it! 🙌
@sumitpurohit88498 ай бұрын
Please make this indexing one for vector embeddings as well.
@JonMeyers8 ай бұрын
Great idea! This one is coming soon!
@flnnx8 ай бұрын
If our backend has a relatively big function that needs to execute multiple DB operations, is it okay if we extract some of the code into utility functions and re-initialize the Supabase client to perform those tasks, or would it be better to pass down the already initialized Supabase client from the main function to the utility functions?
@himesh_898 ай бұрын
How does this effect while working the supabase js package?
@TobiasMars8 ай бұрын
Nice video! but where is my file upload/download and storage with Remix.js tutorial? :DDD
@joshredgrift51338 ай бұрын
would this also improve performance on LIKE clauses? e.g. (SELECT * FROM people WHERE username LIKE '%jo%';)