2

我正在尝试pg_search在我的 Rails 应用程序中实现,想知道是否有办法获取与搜索查询匹配的列?索引表内容由所有可搜索的列字段组成。

例如:

+-----------+----------+
| Firstname | Lastname |
+-----------+----------+
| John      | Doe      |
| Jane      | Doe      |
+-----------+----------+

将导致:

+----------+
| Content  |
+----------+
| John Doe |
| Jane Doe |
+----------+

现在我不知道我的搜索查询是否匹配名字或姓氏。是否有任何选项可以告诉pg_search将列标题添加到内容列?就像是:

+------------------------------------------+
|                 Content                  |
+------------------------------------------+
| {"firstname": "John", "Lastname": "Doe"} |
| {"firstname": "Jane", "Lastname": "Doe"} |
+------------------------------------------+

或者有没有适合我需要的搜索选项?pg_search效果很好,特别是因为我的多租户/postgres-schema 架构。

4

1 回答 1

0

嵌套解决方案可能是为匹配行的每一列动态生成 tsvectors+query..

例子:

select *,
(to_tsvector(p.first_name)@@ to_tsquery( 'joe:*' )) found_in_first_name,
(to_tsvector(p.last_name)@@ to_tsquery( 'joe:*' )) found_in_last_name
from people p 
where  p.fts @@ to_tsquery( 'joe:*' );

此示例可能是最佳解决方案,具体取决于您希望在每个结果集中返回多少数据

另一种方法是破解“权重”以获得您想要的东西:

UPDATE people SET fts =
    setweight(to_tsvector(coalesce(firstname,'')), 'A')    ||
    setweight(to_tsvector(coalesce(lastname,'')), 'B');

所以,我们刚刚做的是在 tsvector 中给 firstname 列一个“权重”“A”,给“lastname”列一个“权重”“B”。请记住,“A”、“B”、“C”和“D”是唯一有效的权重,因此如果您需要对超过 4 列执行此操作,它将不起作用。

如果需要,您的查询可以查询特定权重,并且权重在 tsvector 的文本表示中可见,但是在搜索时它们不可用(IE,返回找到搜索词的权重)

于 2015-01-09T08:01:31.667 回答