从 tsvector 列中检索最常见的关键字
我正在考虑将 tsvector 列添加到现有表中,该表将保存同一表中多个列的可能搜索词(例如 tsvector 列将等于 to_tsvector(header || ' ' || body || ' ' | |页脚)
)。在我决定这样做之前,我的要求之一是我能够在表中的所有记录中找到最流行的关键字。
有没有类似于 tsquery 的东西可以找到所有记录中最流行的关键字?
I'm considering adding a tsvector column to an existing table that will hold possible search terms for multiple columns in that same table (e.g. the tsvector column will equal to_tsvector(header || ' ' || body || ' ' || footer)
). Before I decide to do so, one of my requirements is that I am able to find the most popular keywords amongst all records in the table.
Is there anything similar to tsquery that will find my the most popular keywords over all records?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最有可能的是 ts_stat FTS 函数你在追赶。
Most probably the ts_stat FTS function is what you're after.