Sphinx 查询“starts-with”状况
我正在尝试通过查询来搜索名称以字母 g 开头的表。
"hospital @name ^g"
这是对的吗?即使在使用名称和所有其他列对表进行索引后,我也得到 0 个结果。
I am trying a query to search a table in which names start with a letter g.
"hospital @name ^g"
Is this right ? I am getting 0 results for it even after indexing the table with names and all other columns.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否将该索引的 min_prefix_len 设置为 1?如果没有这个,Sphinx 会将“g”视为一个单独的单词,并且将仅匹配那些以单字母单词“g”开头的文档,例如“g anotherword”。
Do you have min_prefix_len set to 1 for that index? Without this Sphinx treats "g" as a separate word and will match only those documents that start with one-letter word "g", for example "g anotherword".