调整Postgres全文搜索

时间:2016-08-25 23:54:17

标签: json postgresql database-design full-text-search full-text-indexing

该表格为产品

             Table "public.product"
     Column      |           Type           |
-----------------+--------------------------+
 id              | uuid                     |
 attributes      | jsonb                    |

请注意,属性jsonb字段。目前我有大约5k行,我这样查询:

select id, to_tsvector(attributes::text) @@ to_tsquery('22222') from product;

这个查询已经需要几秒钟才能完成,我想知道我是否可以做些什么来改善那段时间,即索引或改进的查询?

要启动此查询,请返回:

                  id                  | found 
--------------------------------------+-------
 a8230602-ff3f-4414-affc-3594abcfa617 | f
 da0c70d5-5108-42ea-941d-123589129feb | f
 24ac417a-466c-465c-b346-4fad7a9ad3d8 | f
 4bee6122-c5d7-4e0c-840e-e04c28888a9a | f
 ce5fe539-bcb2-4cec-9012-b2501df7012e | f

这是不可取的,有没有办法只返回匹配的行?

1 个答案:

答案 0 :(得分:3)

您需要将条件移至WHERE子句:

SELECT *
FROM   product
WHERE  to_tsvector('english', attributes::text) @@ to_tsquery('22222');

在表达式上创建全文索引:

CREATE INDEX textsearch_idx ON product
USING GIN (to_tsvector('english', attributes::text));

索引表达式和查询中的表达式必须匹配。

Details in the manual.

可以能够使用jsonb GIN索引:

但是如果你想一次搜索键,那就不行了。

使用标准化的表格布局,您可能会更开心......