Postgresql 全文搜索具有少量特定字符的单词
这是问题。当执行这个时:
select to_tsvector('simple', 'a.')
我上帝只有一个结果:'a' 因为 ”。”是一个“空格符号”
所以,我的问题是从空格符号列表中删除一些字符的最佳方法是什么, 对于这个(简单)字典或另一个(新创建的)字典。 我找不到系统数据库,也找不到 postgresql 存储这些符号的文件。
here is problem. When execute this:
select to_tsvector('simple', 'a.')
I god just one result: 'a'
because "." is a "Space symbol"
So, my question is what is the best way to remove a few chars from a space symbol list,
for this (simple) dictionary or another (newly created).
I can not find system db, or a file where postgresql store those symbols.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要创建自定义文本搜索配置
,然后添加空白标记的映射
,这样您的所有空格和特殊字符都将转到 tsvectors。这可能不是你想要的。您将需要使用 自定义字典 甚至 自定义解析器来区分您的几个特殊字符。
First you need to create your custom text search configuration
and then add a mapping for blank tokens
This way you all spaces and special chars will go to tsvectors. Which is probably not what you want. You will need to use custom dictionary or even custom parser to distinguish your few special chars.