Postgresql ILIKE versus TSEARCH

痞子三分冷 提交于 2019-11-29 04:41:51

A full text search setup is not identical to a "contains" like query. It stems words etc so you can match "cars" against "car".

If you really want a fast ILIKE then no standard database index or FTS will help. Fortunately, the pg_trgm module can do that.

One thing that is very important: NO B-TREE INDEX will ever improve this kind of search:

where field ilike '%SOMETHING%'

What I am saying is that if you do a:

create index idx_name on some_table(field);

The only access you will improve is where field like 'something%'. (when you search for values starting with some literal). So, you will get no benefit by adding a regular index to field column in this case.

If you need to improve your search response time, definitely consider using FULL TEXT SEARCH.

Chris Travers

Adding a bit to what the others have said.

First you can't really use an index based on a value in the middle of the string. Indexes are tree searches generally, and you have no way to know if your search will be faster than just scanning the table, so PostgreSQL will default to a seq scan. Indexes will only be used if they match the first part of the string. So:

SELECT * FROM invoice
  WHERE invoice_number like 'INV-2012-435%'

may use an index but like '%44354456%' cannot.

In general in LedgerSMB we use both, depending on what kind of search we are doing. You might see a search like:

select * from parts
  WHERE partnumber ilike ?  || '%'
    and plainto_tsquery(get_default_language(), ?) @@ description;

So these are very different. Use each one where it makes the most sense.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!