postgresql – Postgres引发匹配

前端之家收集整理的这篇文章主要介绍了postgresql – Postgres引发匹配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
查询

SELECT to_tsvector(‘entertainment’)@@ to_tsquery(‘recreatio:*’);

即使“recreati”是“娱乐”的前缀,也返回false.这似乎是因为“娱乐”被储存为它的干,“重新”.例如,如果我们通过运行故意破坏干扰算法

SELECT to_tsvector(‘entertainment1’)@@ to_tsquery(‘recreatio:*’);

查询返回true.

有没有办法使第一个查询匹配?

不确定这个答案是否有用,因为问题的年龄,但是:

关于遏制

看来你是对的:

select ts_lexize('english_stem','recreation');

输出

ts_lexize
-----------
 {recreat}
(1 row)

documentation

Also,* can be attached to a lexeme to specify prefix matching:

SELECT to_tsquery('supern:*A & star:A*B');

Such a lexeme will match any word in a tsvector that begins with the given string.

所以似乎没有办法使原始查询匹配.

基于部分匹配的解决方

人们可能会回头寻找茎和查询的部分匹配,例如.使用pg_trgm扩展名

SELECT (to_tsvector('recreation creation') @@ to_tsquery('recreatio:*')) or 
  'recreatio:*' % any (
    select trim(both '''' from regexp_split_to_table(strip(to_tsvector('recreation creation'))::text,' '))
  );

(可能会以更优雅的方式形成茎的阵列.)

猜你在找的Postgre SQL相关文章