postgres 全文搜索向解析器添加句点
我正在使用 postgres 全文搜索。我想将句点 (.) 添加到解析器列表中,应按该句点分割单词。现在Hello world被分割成Hello和world,但是hello.world根本没有分割。
有谁知道如何将句点(.)添加到默认解析器列表中。
谢谢
I am using postgres full text search. I want to add period (.) to the list of parser by which words should be split. right now Hello world is split into Hello and world, but hello.world is not split at all.
Does anyone know how to add period (.) to the default parser list.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来唯一的方法是通过基于 的拆分来以编程方式更新行。
Looks like the only way to do this it to propgramatically update the row by splitting based on .