PostgreSQL Full Text Search Tutorial

preview_player
Показать описание
Let's take a look at Postgres full text search and how it works. I think this is the quickest way to get started with full text search! Hope you enjoy.

Useful Links:

Music:
Huge thank you to Harris Heller for providing copyright-free music.

Hey everyone! My name is Redhwan Nacef (Red for short). In this channel, I'm hoping to share my thoughts on software engineering, coding, management, and all things tech. I hope you enjoy!
Рекомендации по теме
Комментарии
Автор

Excellent ! Short, concise ... really clean explanation. Thanks

michel-
Автор

that's a really good explanation. Thank you for making this video.

umitdemir
Автор

Hi, whichi software are you typing sql at ? looks gorgeous

alexandremondaini
Автор

What's the SQL editor you're using?

Anto-mipn
Автор

What if i want to join multiple tables and perform search on those columns

SAMEERSHAIKH-dwrg
Автор

10:56 on my end, line 68 didn't seem to utilize the index on line 76. Because the index on line 76 is using to_tsvector('english', document), I had to match that as well in the WHERE clause in line 68.
WHERE TO_TSVECTOR('english', document) @@ WEBSEARCH_TO_TSQUERY('thor') <- performs better (uses the Gin index in line 76). Nevertheless, this was a good tutorial 👏 Thank you. Just incase someone is also wondering why the index doesn't work on their end.

iceniveth