Sphinx 查询“starts-with”状况

发布于 2024-10-12 04:25:32 字数 125 浏览 2 评论 0原文

我正在尝试通过查询来搜索名称以字母 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剑心龙吟 2024-10-19 04:25:32

您是否将该索引的 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文