PostgreSQL: Full Text Search - How to search partial words?

后端 未结 6 1202
情书的邮戳
情书的邮戳 2020-12-07 23:23

Following a question posted here about how I can increase the speed on one of my SQL Search methods, I was advised to update my table to make use of Full Text Search. This i

相关标签:
6条回答
  • 2020-12-07 23:43

    The broad solution to this is to use PG's ts_rewrite function to setup an aliases table that works for alternate matches (see Query Rewriting). This covers cases like yours above while also handling completely different cases like searching for tree rat and getting results for squirrel, etc.

    Full details and explanation at that link, but the gist of it is that you can setup an aliases table with 2 ts_query columns and pass a query of that table to in with your search, like so:

    CREATE TABLE aliases (t tsquery primary key, s tsquery);
    INSERT INTO aliases VALUES(to_tsquery('supernovae'), to_tsquery('supernovae|sn'));
    
    SELECT ts_rewrite(to_tsquery('supernovae & crab'), 'SELECT * FROM aliases');
    

    Resulting in a final query that looks more like:

    WHERE vectors @@ ts_rewrite(to_tsquery('supernovae & crab'), 'SELECT * FROM aliases')
    

    This is similar to the thesaurus setup within PG but works without requiring a full reindex every time you add something. As you come across little spelling variations and cases of "when I search for this I expect results like this" it's very easy to just add them to the table real quick. You can add more columns to that table as well as long as the query based to ts_rewrite returns the 2 expected to_tsquery columns.

    When you dig into that documentation you'll see suggested examples for performance tuning as well. There's a balance between using trigram for pure speed and using vector/query/rewrite for robustness.

    0 讨论(0)
  • 2020-12-07 23:50

    Anthoni,

    Assuming you plan on using only ASCII encoding (could be difficult, I'm aware), a very viable option may be the Trigram (pg_trgm) module: http://www.postgresql.org/docs/9.0/interactive/pgtrgm.html

    Trigram utilizes built-in indexing methods such as Gist and Gin. The only modification you have to make is when defining your index, specify an Operator Class of either gist_trgm_ops or gin_trgm_ops.

    If the contrib modules aren't already installed, in Ubuntu it's as easy and running the following command from the shell:

    # sudo apt-get install postgresql-contrib
    

    After the contrib modules are made available, you must install the pg_trgm extension into the database in question. You do this by executing the following PostgreSQL query on the database you wish to install the module into:

    CREATE EXTENSION pg_trgm;
    

    After the pg_trgm extension has been installed, we're ready to have some fun!

    -- Create a test table.
    CREATE TABLE test (my_column text)
    -- Create a Trigram index.
    CREATE INDEX test_my_colun_trgm_idx ON test USING gist (my_column gist_trgm_ops);
    -- Add a couple records
    INSERT INTO test (my_Column) VALUES ('First Entry'), ('Second Entry'), ('Third Entry')
    -- Query using our new index --
    SELECT my_column, similarity(my_column, 'Frist Entry') AS similarity FROM test WHERE my_column % 'Frist Entry' ORDER BY similarity DESC
    
    0 讨论(0)
  • 2020-12-07 23:50

    @alexander-mera solution works great!

    Note: Also make sure to convert spaces to +. For example, if you are searching for squire knight.

    SELECT title FROM movies WHERE to_tsvector(title) @@ to_tsquery('squire+knight:*')
    
    0 讨论(0)
  • 2020-12-07 23:51

    Even using LIKE you will not be able to get 'squirrel' from squire% because 'squirrel' has two 'r's. To get Squire and Squirrel you could run the following query:

    SELECT title FROM movies WHERE vectors @@ to_tsquery('squire|squirrel');
    

    To differentiate between movies and tv shows you should add a column to your database. However, there are many ways to skin this cat. You could use a sub-query to force postgres to first find the movies matching 'squire' and 'squirrel' and then search that subset to find titles that begin with a '"'. It is possible to create indexes for use in LIKE '"%...' searches.

    Without exploring other indexing possibilities you could also run these - mess around with them to find which is fastest:

    SELECT title 
    FROM (
       SELECT * 
       FROM movies 
       WHERE vectors @@ to_tsquery('squire|squirrel')
    ) t
    WHERE title ILIKE '"%';
    

    or

    SELECT title 
    FROM movies 
    WHERE vectors @@ to_tsquery('squire|squirrel') 
      AND title ILIKE '"%';
    
    0 讨论(0)
  • 2020-12-07 23:51

    Try,

    SELECT title FROM movies WHERE to_tsvector(title) @@ to_tsquery('squire:*')
    

    This works on PostgreSQL 8.4+

    0 讨论(0)
  • 2020-12-07 23:51

    One thing that may work is break the word you are searching for into smaller parts. So you could look for things that have squi or quir or squire or etc... I'm not sure how efficient that would be though, but it may help.

    When you search for the film or movie you could try placing the text in the single quote. so it would be either 'show' or '"show"'. I think that could also work.

    0 讨论(0)
提交回复
热议问题