You can do half queries using 'isl:*' , this will return everything that starts with 'isl'. If you want a multiword search, add in between the words i.e 'sea mon:*'. This will return the row with 'Sea Monster'
@bawad5 жыл бұрын
Oh awesome
@herbertpimentel5 жыл бұрын
Hey man, you look to understand very well about this... do you have any video to share with us ?
@sungatae4 жыл бұрын
What impact does :* have on performance?
@benargee4 жыл бұрын
@@sungatae he explained how to check in the video. Explain analyze.
@dedygunanto3 жыл бұрын
what if i want to search 'island' just with 'land', i tried with '*:land' is not working and generate error message?
@jayadevanm83864 жыл бұрын
Thank you for the detailed step-by-step session. PostgreSQL 12, released later, added generated columns. So we no longer need a trigger to keep the search column updated.
@gabriel_export3 жыл бұрын
So much clearer than the postgresql docs. My head was spinning reading all the technical details of how it works. THANKS
@arkadyzelensky76554 жыл бұрын
I searched for a full-text search explanation and just clicked on the first video on KZbin. And this was such luck! Very clear and interesting explanation. Thank you a lot for doing this!
@Pan-ux3bq3 жыл бұрын
This is the best and the simplest explanation of postgresql FTS I could find on internet
@amavumkal3 жыл бұрын
That was very helpful. I love how you started very basic and then got into the complex queries. Thanks so much!
@schriker174 жыл бұрын
Works great! I've just tested it with 125k rows, and results are close enough so i can omit running elasticksearch like database!
@christiangyaban96665 жыл бұрын
Ben...finally my request have been granted...👍u rock
@lakshyarajdash2 жыл бұрын
Great explanation.. saved a lot of time that I wasted searching over the internet.
@birham073 жыл бұрын
I like how you followed start simple finish master approach. Thank you for your awesome contents once again!
@eminem25 жыл бұрын
Ok, you know how people say that they want to do something and don't know how and in the very same day you upload the exact solution? You did it again! By the way at the moment I am using Redis's RediSearch module. It's super fast, I mean hyper fast. But I have some data in Hasura too, so for some data it's overkill to put in Redis. So will see your solution in action.
@bawad5 жыл бұрын
I've been meaning to try out the search module for Redis, that sounds sweet
@usernamegaro4 жыл бұрын
i really appreciate your effort for explaining in a simple way this powerful function, thanks a lot! ;)
@pablo_brianese4 жыл бұрын
I didn't expect to find a video from you on this topic. I am lucky!
@lemonphi5 жыл бұрын
Great video! Not sure if it was already answered, but regarding your last question of 'how to query for half a word' - this seems to be possible with 'to_tsquery' but not 'plainto_tsquery', you can use it like 'to_tsquery('blah:*')'. Greets, Bernd
@bawad5 жыл бұрын
thanks
@barclaysd5 жыл бұрын
Such a great tutorial! Thanks Ben!
@michaelhearmon99654 жыл бұрын
I come from a T-SQL background, but codewars use Postgresql. This was really interesting to learn, thanks for the upload
@sethmoeckel61602 жыл бұрын
Postgres Generated columns would be really useful for generating search documents as changes are made. Its also a bit simpler than triggers.
@stevezelaznik58722 жыл бұрын
It is, as long as the input data for true search index lives on the same table. Once you join tables together to make a search index, a generated column doesn’t work.
@michaeldausmann60664 жыл бұрын
Great video, the docs on this are pretty dense so this was helpful. It still blows me away how good postgresql is and how much you get essentially for free.
@rubinskyzlatrovich67315 жыл бұрын
💪🏻💪🏻 2 of the list ✅. Dude, nice video! Seems like the video will do great! congrats and 🙏🏻thank you
@SeriousM4x2 жыл бұрын
i was just looking up this topic, clicked on the video and half way though realised its from ben
@sanskarkaazi38302 жыл бұрын
At 15:18 , the variable "document_with_weights" got the datatype "any" which might be available in this PL but let's say if you had to do this with java or c# .. what datatype do you use for the variable?
@sufiyaanrajput75334 жыл бұрын
The tutorial was really great and has helped me get started. However in my use case I have multiple tables to search through and I have achieved it without indexing. How would you index columns from different tables for a single FTS query?
@stevezelaznik58722 жыл бұрын
The solution is no longer as elegant, but you create a new table which combines the values you want to search on. Let's say you have a "users" table and a "blog_posts" table. CREATE TABLE searchable_blog_posts ( id SERIAL, user_id INTEGER, blog_post_id INTEGER, search_index tsvector ) CREATE INDEX index_searchable_blog_posts_search_index ON search_index USING GIN(search_index); Then you can populate this "searchable_blog_posts" table using the information you want to be searchable. Then you use triggers to update this `searchable_blog_posts` table whenever either a change is made to the "users" table or the "blog_posts" table.
@dennistennis56225 жыл бұрын
Great video again Ben!
@abelhuaranca47853 жыл бұрын
EXCELLENT LESSON, PERFECT, SUBLIME, THANKS THANKS BEN AWAD!!!! A HUUUUUUUUUUUUUUUUGE THANKS!!!!! :D
@MohanChawla-jy2wc Жыл бұрын
Very clear explanation. Thank You so much!
@mokshchadha91514 ай бұрын
this is was very helpful and step by step reallly helped.
@armaan83503 жыл бұрын
If a table have child table then how a text can be search from parent table as well as child table. Please help me. I stuck in my project
@lldadb664 Жыл бұрын
Right to the point with great examples. Thanks!
@mh5854 Жыл бұрын
use plainto_tsquery instead of to_tsquery, because to_tsquery does not escape the sql letters like ', \, !, so the query can be easily injected
@alex147795 жыл бұрын
what about performance when you re-create index on every update?
@bawad5 жыл бұрын
no idea
@JasonKim15 жыл бұрын
I would recommend against that. Indexing is costly. On a table with 1 million rows, you can expect indexing to take roughly 5 to 10 seconds. Also some indexing locks the table. Index your table with a delayed job that gets performed daily or hourly.
@victorxu96345 жыл бұрын
you rebuild the GIN/GiST index for that row when the row is updated. More info here www.postgresql.org/docs/9.1/textsearch-indexes.html
@ВикторАлександрович-д5г Жыл бұрын
if we need to use search on 2 tables then how to build an index in this case. pls help
@tunedmystic15 жыл бұрын
Awesome! Great video Ben! subbed 👍
@bawad5 жыл бұрын
Welcome :)
@aufula3 жыл бұрын
I create a MATERIALIZED VIEW and a combined GIN index on it to prevent adding those additional columns.
@saeedrezaalipourfard19025 жыл бұрын
Great tutorial! Thanks.
@sojun26425 жыл бұрын
Awesome!, I followed the video and got good results, I also solved the problem of leyword is "isl" to search for "Island", just add "isl: *", but i want to search: when I enter the keyword "land", I want to get "island", I tried with prefixes like: "*: keyword: *", but this is not a good shot and an err sytanx is printed, What do I do with this problem? Any help is appreciated, thanks
@froylanvargas69024 жыл бұрын
Excellent tutorial here! Thanks.
@eduardmart12372 жыл бұрын
How do you add these indexes automatically on insert or update?
@vishwas22khare3 жыл бұрын
Man how you connect posters full text search with your saffron website please please please tell me .
@JacksonWelch3 жыл бұрын
Great video, super helpful. Wonder how this would scale with a really large database.
@ackava3 жыл бұрын
Can't you create a computed column for tsvector instead of creating trigger?
@bmdolan4 жыл бұрын
This is a GREAT tutorial! Thanks.
@willcowan76784 жыл бұрын
Awesome tutorial, thank you
@leandrogripp12513 жыл бұрын
A little late, but does anyone know how can i implement something like the initial example, that searches a bunch of keywords? The behavior I want is to get every result that matches at least one of the keywords, but ordered by number of matches (and if possible, still considering the given weights for the fields, as a match in the title is still more valuable than a match in the description)
@waterydan4 жыл бұрын
Just wondering how I can search across multiple tables? Do I need to concatenate all tables into a new one and do the full text search there?
@geralt363 жыл бұрын
how about creating a view of all those tables and having a tsvector column of all the required columns in that same view
@asifhaider56384 жыл бұрын
did you use javascript to see the probable result in your website or just prosgres ...if you did..how you do it ...can you help me
@SergiiStarodubtsev3 жыл бұрын
I noticed that using tvector make search 2 times slower comparing to "and (like '%abc%' or like '%bcd%'), on top of this tvector performance is not stable, sometimes its say 6 seconds, sometimes 11 seconds to get the response
@dedygunanto3 жыл бұрын
Awesome tutorial!!
@PeterCulka4 жыл бұрын
Thanks for this. Now what about accentuated chars? Latin2 etc ?
@vichitrakumar44524 жыл бұрын
Great tutorial!
@me_sami054 жыл бұрын
Could you please help me to understand the difference between Full Text Search PostgreSQL and Elasticsearch?
@neneodonkor2 жыл бұрын
PostgreSQL is database that uses tables while Elasticsearch uses JSON. The latter is focused on search queries and so it's faster. In my opinion, it is geared towards enterprise stuff.
@LawZist5 жыл бұрын
great video!
@antoniosousa41783 жыл бұрын
You are the man.
@rafaelrequenatroncos27713 жыл бұрын
Can you do full text with incomplete words?
@DrPanesar5 жыл бұрын
hi Ben thanks for the video. Is there a way to do a partial match to a word with this type of search setup? So Noo would find Noodles?
@bawad5 жыл бұрын
I think so, but I haven't tried to do it myself
@TehLostGamers4 жыл бұрын
Amazing tutorial good job, just one small issue your trigger does not update new income rows it should have an update statement in the trigger instead of a := e.g. BEGIN UPDATE table_name SET document_with_weights = setWeight(.........) WHERE id = NEW.id; return NEW END
@alooooooola3 жыл бұрын
postgres will cache query so that benchmark is clearly not prove anything. The only difference is strategy the database plan to perform. At 5:50 you showed 2 query the first is much slower than the second. However, look at the strategy it is the same (seq scan which is the worst) but the result is cached so it was faster. You need to re thinking about it
@kythinhnguyen54742 жыл бұрын
very usefull, thank you.
@fenkssoehas45135 жыл бұрын
Could please tell me what IDE that you've been used? thx
@bawad5 жыл бұрын
vscode
@jeudesprits4405 жыл бұрын
Ben Awad, what u say about FoundationDB?
@bawad5 жыл бұрын
never tried it
@probleemsupport31194 жыл бұрын
wich software do u use there?
@dejfcold2 жыл бұрын
It's JetBrains' DataGrip for the DB stuff and VS Code for the JS stuff
@merlin26005 жыл бұрын
Awesome video ! The issue that it won't work for "isl" but well "islands" because it's an English word variation is really annoying when searching for names: searching an artist "Martin" won't match "Martina". If anyone has a pointer about a way to achieve that, I'm interested.
@theacid12 жыл бұрын
You can add a '':*' in the search query. Example with 'isla': plainto_tsquery('isla:*') will match all words prefixed with 'isla'
@preppedchef5 жыл бұрын
Is this possible utilizing knex?
@bawad5 жыл бұрын
yeah this isn't specific to typeorm, just postgres
@cunningham.s_law5 жыл бұрын
can you make videos on elastic search?
@bawad5 жыл бұрын
sure
@CoryMcaboy5 жыл бұрын
What editor of that?
@bawad5 жыл бұрын
www.jetbrains.com/datagrip/
@danieldosen52605 жыл бұрын
I'm a big an of datagrip - just know that you can tweak your sql syntax formatting. I'm not a big fan of their default editor formatting rules.
@bawad5 жыл бұрын
oh cool
@maximsobolevskiy55955 жыл бұрын
@@danieldosen5260 But can you configure the style you need? If not, please, file a feature request in our tracker: youtrack.jetbrains.com/issues/DBE
@sushilbansalk5 жыл бұрын
there is a directive available on Typeorm: @Index({ fulltext: true }) Not sure what it does and how it works.
@bawad5 жыл бұрын
I didn't know that existed, I'll have to go check it out
@stevereid6365 жыл бұрын
Did you ever get round to checking this out?
@bawad5 жыл бұрын
Nope, haven't done another project with fulltext search yet
@ArtemSutulov5 жыл бұрын
Thanks a lot
@septinmulatsihrezki28235 жыл бұрын
nice video
@NexoLP5 жыл бұрын
First thank you for this great video! But I'm still wondering how it works to search not just for one word. I want to search with more words as one coherent term, so that you compare for example the search term "highway robber battlefield" with the data in your data base. Does anyone have a solution for this?
@lemonphi5 жыл бұрын
you can use operators like &, | and !
@CardinalHijack4 жыл бұрын
Hey Ben, do you know how these results compare to using typeorm find or findOne?
@bawad4 жыл бұрын
you'll want to use find or findOne first if that supports your use case
@pajeetsingh3 жыл бұрын
You did not consider time to create a new column.
@tim.bogdanov2 жыл бұрын
Exactly what im facing right now. I assume you mean adding more columns down the road to search on right?
@alexsantiago27974 жыл бұрын
I love you. Is there anything you haven't covered?
@San_OO73 жыл бұрын
MySQL vs PSQL please
@WernerRaath4 жыл бұрын
I would definitely recommend this video, which builds on what you've said: kzbin.info/www/bejne/mWmso4h-i5xjgbM
@vieto48475 жыл бұрын
thank u for this video ! But i want to get all records in table and still use *doc..* @@ plainto_tsquery(:query) . So what do i put in "query" ?
@bawad5 жыл бұрын
Why do you need to use tsquery if you want all the records?
@sreevishal22234 жыл бұрын
Your awesome (y)..
@andresmontoya78525 жыл бұрын
I did an issue in the typeorm GitHub, it is about how to do an fulltext query with MySQL and typeorm github.com/typeorm/typeorm/issues/3191 I don't know if it is better than what you did, but I want to know your thoughts about it :)
@bawad5 жыл бұрын
I've never tried to do that with MySQL so I'm not sure how it compares
@andresmontoya78525 жыл бұрын
@@bawad you can run it over docker and try it
@paraavcs21255 жыл бұрын
Can you use Synonym search with PostgreSql or Elasticsearch on next video? Here an example. medium.com/@lucasmagnum/elasticsearch-setting-up-a-synonyms-search-facea907ef92
@obedm5035 жыл бұрын
would be cool if you made a similar video but using pg_trgm instead of vectors also sent a twitter dm about this
@sharam13375 жыл бұрын
every recipe is from julie right now.
@bawad5 жыл бұрын
In the video that's Julie's account Or your looking at the sample cookbook which she made
@kerodfresenbetgebremedhin18812 жыл бұрын
trigrams
@japroz4 жыл бұрын
Hhhiiiii
@theacid12 жыл бұрын
There is a rather big mistake in the search query at around 17:00. You used english stemming for creating the vector but not in the search query. Problem is that for example the word 'Training' will get stemmed to 'train' but now if a user searches for 'training' the search won't find any results because they do not match. You have to use 'english' stemming also in the query like this: document_with_weights @@ plainto_tsquery('english', :query)"